-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from PMReadyOfficial/dev
Dev
- Loading branch information
Showing
16 changed files
with
86 additions
and
16 deletions.
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 |
---|---|---|
|
@@ -36,4 +36,6 @@ jobs: | |
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
|
||
uses: actions/deploy-pages@v4 | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,21 @@ | ||
|
||
|
||
export default function Hero() { | ||
return ( | ||
<div className="flex px-40 py-20 gap-4"> | ||
<div className="flex-1"> | ||
<div className="text-[42px] font-bold">Learn product management while making a real difference</div> | ||
<div>A fully remote product fellowship program in the Fall where students in undergraduate programs can work with startups to gain real world experience</div> | ||
<div className="mt-4">*Application is not open at the moment</div> | ||
<div className="flex gap-4 mt-4"> | ||
<button className="border rounded-3xl text-[#fa9d74] border-[#fa9d74] px-8 py-2">Learn more</button> | ||
<button className="px-8 py-2 bg-[#24223c] rounded-3xl text-white">Apply Now</button> | ||
</div> | ||
|
||
</div> | ||
<div className="flex-1"> | ||
<img src="Group 2463.png"/> | ||
</div> | ||
</div> | ||
) | ||
} |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,26 @@ | ||
--- | ||
import Layout from "../layouts/Layout.astro"; | ||
import Header from "../components/Header"; | ||
import ResourcesHero from "../components/resources/ResourcesHero"; | ||
import NewFooter from "../components/NewFooter"; | ||
import ProgramHero from "../components/program/ProgramHero"; | ||
import NewHero from "../components/program/newProgramHero.jsx" | ||
import Learning from "../components/program/Learning.jsx" | ||
import Alumni from "../components/program/alumni.jsx" | ||
import Apply from "../components/program/Apply.jsx" | ||
import Benefits from "../components/program/Benefits"; | ||
import P101 from "../components/program/P101" | ||
import TCE from "../components/program/TCE" | ||
--- | ||
|
||
|
||
<Layout title="PMReady"> | ||
|
||
<Header client:load /> | ||
<!--<ProgramHero/>--> | ||
<NewHero/> | ||
<Benefits/> | ||
<P101/> | ||
<TCE/> | ||
<NewFooter /> | ||
</Layout> |