-
Notifications
You must be signed in to change notification settings - Fork 376
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
Created My Service Page of vigybag #2036
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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,44 @@ | ||
import React from "react"; | ||
import { FaSearch } from "react-icons/fa"; | ||
|
||
function Header() { | ||
return ( | ||
<> | ||
<header className="relative h-96 md:h-[100vh] flex items-center justify-center overflow-hidden"> | ||
<div className="absolute inset-0 z-0"> | ||
<img | ||
src="https://image-assets.eu-2.volcanic.cloud/api/v1/assets/images/67b76b0e206f4f5656559b5c96208131?size=2000x600%3C" | ||
alt="Background" | ||
className="w-full h-full object-cover filter " | ||
/> | ||
<div className="absolute inset-0 bg-black opacity-50"></div> | ||
</div> | ||
<div className="relative z-10 text-center text-white px-4"> | ||
<h1 className="text-4xl md:text-6xl font-bold mb-2 md:mb-4"> | ||
Career VigyBag 🌱 | ||
</h1> | ||
<p className="text-5xl max-w-3xl mx-auto"> | ||
<span className="text-yellow-200">Innovate,</span>{" "} | ||
<span className="text-blue-400">inspire,</span> and{" "} | ||
<span className="text-green-200">grow</span> with{" "} | ||
<span className="text-5xl text-green-300 font-bold">VigyBag.</span> | ||
</p> | ||
<div className="flex items-center rounded-full border-green-800 border-2 bg-gray-200 px-4 py-2 w-100 mt-7"> | ||
<input | ||
type="text" | ||
placeholder="Explore jobs" | ||
className="bg-transparent outline-none w-full text-green-700" | ||
/> | ||
<FaSearch className="text-green-800" /> | ||
</div> | ||
<p className="text-white text-left pl-2 mt-2"> | ||
<span className="text-yellow-300">197</span> opportunities available | ||
to be a maximiser. | ||
</p> | ||
</div> | ||
</header> | ||
</> | ||
); | ||
} | ||
|
||
export default Header; |
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,27 @@ | ||
import React from "react"; | ||
import background from "../../../assets/back.jpg"; | ||
|
||
function Header() { | ||
return ( | ||
<> | ||
<header className="relative h-96 md:h-[100vh] overflow-hidden"> | ||
<div className="absolute inset-0 z-0"> | ||
<img | ||
// src="https://img.freepik.com/premium-photo/abstract-11-light-background-wallpaper-colorful-gradient-blurry-soft-smooth-motion-bright-shine_792836-34993.jpg" | ||
src={background} | ||
alt="Background" | ||
className="w-full h-full object-cover filter " | ||
/> | ||
<div className="absolute inset-0"></div> | ||
</div> | ||
<div className="relative z-10 text-center text-green px- mt-32"> | ||
<h1 className="text-4xl text-white md:text-5xl font-bold mb-2 md:mb-4"> | ||
Our Service | ||
</h1> | ||
</div> | ||
</header> | ||
</> | ||
); | ||
} | ||
|
||
export default Header; |
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.
Optimize class names for readability.
The class names could be optimized for better readability and maintainability.
Committable suggestion