generated from acm-ucr/acm-ucr-website
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Engineers/Technical Professionals Component #26
Merged
stormyy00
merged 11 commits into
dev
from
armaniegonzalez/engineers-technical-professional-component
Jan 28, 2025
Merged
Changes from 5 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
2739100
Tried fixing format issue
Raiden-Griff ce11736
Fixed format issue
Raiden-Griff 6784c91
Merge branch 'armaniegonzalez/Engineers-technical-professionals-compo…
Raiden-Griff cd80f3f
Create Engineers: Technical Professionals Component.html
Raiden-Griff 9ab61fe
Trying to correct the formatting issue
Raiden-Griff d279885
Fixed code from css to tailwind css
Raiden-Griff 18b2f7b
Fixed formatting issue with prettier
Raiden-Griff 4ac04ba
Delete Engineers: Technical Professionals Component.html
Raiden-Griff 371ad95
Delete src/components/projects/research 2.tsx
Raiden-Griff 3637458
Delete src/components/projects/professionals 2.tsx
Raiden-Griff 85dbf4a
Delete src/components/projects/business 2.tsx
Raiden-Griff File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>Engineers/ Technical Professionals Component</title> | ||
</head> | ||
<body> | ||
<style> | ||
h1 { | ||
font-family: "Arial", sans-serif; | ||
font-size: 25px; | ||
font-weight: normal; | ||
padding-left: 15px; | ||
display: inline-block; | ||
} | ||
.yellow-line { | ||
display: inline-block; | ||
width: 115px; | ||
height: 2px; | ||
background-color: #ffb81c; | ||
margin-left: 5px; | ||
vertical-align: text-top; | ||
margin-top: 5px; | ||
} | ||
|
||
p { | ||
font-family: "Arial", sans-serif; | ||
font-size: 10.5px; | ||
line-height: 1.4; | ||
width: 33%; | ||
margin-left: left; | ||
margin-right: left; | ||
padding: 2px; | ||
padding-left: 18px; | ||
text-align: left; | ||
word-wrap: break-word; | ||
} | ||
</style> | ||
</body> | ||
<h1>Engineers/Technical Professionals</h1> | ||
<div class="yellow-line"></div> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adispiscing elit, sed do eiusmod | ||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, | ||
quis nostrud exceritation ullamco laboris nisi ut alliquip ex ea commodo | ||
consequat. | ||
</p> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import React from "react"; | ||
|
||
const Professionals = () => { | ||
return ( | ||
<div> | ||
<h1>Engineers/Technical Professionals</h1> | ||
<div className="yellow-line"></div> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod | ||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim | ||
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea | ||
commodo consequat. | ||
</p> | ||
|
||
<style> | ||
{` | ||
h1 { | ||
font-family: "Arial", sans-serif; | ||
font-size: 25px; | ||
font-weight: normal; | ||
padding-left: 15px; | ||
display: inline-block; | ||
} | ||
|
||
.yellow-line { | ||
display: inline-block; | ||
width: 115px; | ||
height: 2px; | ||
background-color: #ffb81c; | ||
margin-left: 5px; | ||
vertical-align: text-top; | ||
margin-top: 5px; | ||
} | ||
|
||
p { | ||
font-family: "Arial", sans-serif; | ||
font-size: 10.5px; | ||
line-height: 1.4; | ||
width: 33%; | ||
margin-left: left; | ||
margin-right: left; | ||
padding: 2px; | ||
padding-left: 18px; | ||
text-align: left; | ||
word-wrap: break-word; | ||
} | ||
`} | ||
</style> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Professionals; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use tailwind css. we are keeping the code consistent so css is not allowed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just changed it to tailwind css. I also deleted unnecessary files, as a few I attached the branch were not needed.