-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Teams page and finished SW page. Missing details/imgs for SW, M…
…ain page and maybe TT?
- Loading branch information
1 parent
4b79078
commit 5c7fcdb
Showing
129 changed files
with
24,190 additions
and
6,303 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
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 |
---|---|---|
@@ -1 +1,27 @@ | ||
// Page for SW page (startup week) | ||
// Page for SW page (startup week) | ||
"use client"; | ||
|
||
import { navItems } from "@/data"; | ||
|
||
import { FloatingNav } from "@/components/ui/FloatingNavbar"; | ||
import { | ||
TeamGridSection, | ||
CloseIcon, | ||
} from "@/components/blocks/teamgridorientation"; | ||
import TeamTitle from "@/components/TeamTitle"; | ||
import SWPage from "@/components/StartupWeek"; | ||
|
||
const Home = () => { | ||
return ( | ||
<main | ||
className=" w-full dark:bg-black-200 bg-white dark:bg-grid-white/[0.03] bg-grid-black-100/[0.2] | ||
absolute top-0 left-0 flex justify-center items-center flex-col overflow-clip" | ||
> | ||
<FloatingNav navItems={navItems} /> | ||
<TeamTitle titleContent="Startup Committee" /> | ||
<SWPage /> | ||
</main> | ||
); | ||
}; | ||
|
||
export default Home; |
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 |
---|---|---|
|
@@ -5,36 +5,29 @@ import MagicButton from "./MagicButton"; | |
|
||
const Footer = () => { | ||
return ( | ||
<footer className="w-full pt-20 pb-10" id="contact"> | ||
<footer className="w-full mb-[100px] md:mb-5 pb-10" id="contact"> | ||
{/* background grid */} | ||
<div className="w-full absolute left-0 -bottom-72 min-h-96"> | ||
<img | ||
src="/footer-grid.svg" | ||
alt="grid" | ||
className="w-full h-full opacity-50 " | ||
/> | ||
</div> | ||
|
||
<div className="flex flex-col items-center"> | ||
<h1 className="heading lg:max-w-[45vw]"> | ||
Ready to take <span className="text-purple">your</span> digital | ||
presence to the next level? | ||
<h1 className="heading lg:max-w-[45vw] pb-5"> | ||
Learn more? <span className="text-purple">Coffee Chat</span> or Email | ||
us here | ||
</h1> | ||
<p className="text-white-200 md:mt-10 my-5 text-center"> | ||
{/* <p className="text-white-200 md:mt-10 my-5 text-center"> | ||
Reach out to me today and let's discuss how I can help you | ||
achieve your goals. | ||
</p> | ||
<a href="mailto:[email protected]"> | ||
</p> */} | ||
<a href="techatnyu.org/forms"> | ||
<MagicButton | ||
title="Let's get in touch" | ||
title="Contact Form" | ||
icon={<FaLocationArrow />} | ||
position="right" | ||
/> | ||
</a> | ||
</div> | ||
<div className="flex mt-16 md:flex-row flex-col justify-between items-center"> | ||
<p className="md:text-base text-sm md:font-normal font-light"> | ||
Made by Sean Lai, Michael Shen, and special thanks to JS Mastery for helping style the website. | ||
Developed by Sean Lai Sheng Hong alongside the 24-25 Tech@NYU Team | ||
</p> | ||
|
||
<div className="flex items-center md:gap-3 gap-6"> | ||
|
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
Oops, something went wrong.