Skip to content
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

dubs #259

Merged
merged 2 commits into from
May 14, 2024
Merged

dubs #259

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/FAQ.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const FAQ = () => {
return (
<section
id="faq"
className="relative bg-newdesign-cyan-200 flex justify-center w-full py-24 md:py-48"
className="relative bg-gradient-to-b from-[#0D6F73] to-[#034444] flex justify-center w-full py-12 md:py-16"
>
<div className="flex justify-center items-center flex-col w-10/12 md:w-8/12 relative z-20">
<div className="text-3xl lg:text-6xl font-bold text-white">FAQ</div>
Expand Down
13 changes: 11 additions & 2 deletions src/components/Landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Animals from "@/public/svgs/landing/animals.svg";
import Mushrooms2 from "@/public/svgs/landing/mushrooms2.svg";
import Waterline from "@/public/svgs/landing/waterline.svg";
import Image from "next/image";
import data from "@/data/Config";
import OnlyFrog from "@/public/svgs/landing/onlyFrog.svg";
// import Lillypad from "@/public/svgs/landing/lillypad.svg";
import Lotus from "@/public/svgs/landing/lotus.svg";
Expand Down Expand Up @@ -42,8 +43,16 @@ const Landing = () => {
<CountDown />
</div>
</div>
<div className="grid grid-cols-1 space-y-4 lg:space-y-0 lg:grid-cols-2 mt-8">
<div className="flex justify-center items-center z-20">
<Apply text="Feedback" link="/form/feedback" />
</div>
<div className="flex justify-center items-center z-20">
<Apply text="Winners" link={data.devpost} />
</div>
</div>

{new Date().getDate() > 10 ? (
{/* {new Date().getDate() > 10 ? (
<div className="flex justify-center items-center flex-col">
<div className="mt-4 md:mt-8 flex justify-center items-center w-4/12 lg:w-2/12 z-20">
<Apply text="Participant Portal" link="/user" />
Expand All @@ -56,7 +65,7 @@ const Landing = () => {
<div className="mt-4 md:mt-8 flex justify-center items-center w-4/12 lg:w-2/12 z-20">
<Apply text="Apply Now" link="/form/participant" />
</div>
)}
)} */}
</div>
<Image
className="left-0 hidden absolute md:block w-7/12 md:w-[25%] 2xl:w-1/4 md:z-20 top-1/2 -translate-y-1/3 z-10"
Expand Down
12 changes: 6 additions & 6 deletions src/components/Resources.jsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import React from "react";
import Resource from "./Resource";
import resource1 from "@/public/svgs/support/figma.webp";
import resource2 from "@/public/svgs/support/dribble.webp";
import resource3 from "@/public/svgs/support/miro.webp";
// import Resource from "./Resource";
// import resource1 from "@/public/svgs/support/figma.webp";
// import resource2 from "@/public/svgs/support/dribble.webp";
// import resource3 from "@/public/svgs/support/miro.webp";
import Image from "next/image";
import river from "@/public/svgs/river.svg";

const Resources = () => {
return (
<div className="flex font-workSans flex-col bg-[#D3E6EC] relative">
<Image src={river} alt="river" className=" w-screen " />
<div
{/* <div
id="resources"
className="flex flex-col items-center justify-center bg-gradient-to-b from-[#0D6F73] to-[#034444]"
>
Expand All @@ -37,7 +37,7 @@ const Resources = () => {
image={resource3}
/>
</div>
</div>
</div> */}
</div>
);
};
Expand Down
27 changes: 26 additions & 1 deletion src/components/postlive/Postlive.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
import Footer from "../Footer";
import About from "../About";
import Leads from "../Leads";
import FAQ from "../FAQ";
import Tracks from "../Tracks";
import Schedule from "../schedule/Schedule";
import Committees from "../Committees";
import Sponsors from "../Sponsors";
import Resources from "../Resources";
import Landing from "../Landing";
import Judges from "../Judges";
const Postlive = () => {
return <div></div>;
return (
<div className="w-full h-screen overflow-x-hidden relative font-workSans">
<Landing />
<About />
<Schedule />
<Tracks />
<Sponsors />
<Judges />
<Leads />
<Committees />
<Resources />
<FAQ />
<Footer />
</div>
);
};

export default Postlive;
4 changes: 2 additions & 2 deletions src/data/Releases.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const DEV = {
LIVE: {
START: new Date("10/01/2023"),
END: new Date("10/10/2024"),
END: new Date("5/12/2024"),
},
POSTLIVE: {
START: new Date("10/01/2023"),
Expand Down Expand Up @@ -42,7 +42,7 @@ const DEV = {
const PRODUCTION = {
LIVE: {
START: new Date("10/01/2023"),
END: new Date("10/10/2024"),
END: new Date("5/12/2024"),
},
POSTLIVE: {
START: new Date("10/01/2023"),
Expand Down
Loading