-
Notifications
You must be signed in to change notification settings - Fork 21
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 #25 from mohit-nagaraj/pr
Landing page complete
- Loading branch information
Showing
14 changed files
with
161 additions
and
125 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 |
---|---|---|
@@ -1,19 +1,40 @@ | ||
export const metadata = { | ||
title: 'Home', | ||
description: 'Landing page', | ||
} | ||
title: "Home", | ||
description: "Landing page", | ||
}; | ||
|
||
import Hero from '@/components/hero' | ||
import Domains from '@/components/domains' | ||
import '../css/additional-styles/landing.css'; | ||
import Landing from '@/components/landing'; | ||
import Hero from "@/components/hero"; | ||
import Domains from "@/components/domains"; | ||
import "../css/additional-styles/landing.css"; | ||
import Landing from "@/components/landing"; | ||
import Image from "next/image"; | ||
import Link from "next/link"; | ||
|
||
export default function Home() { | ||
return ( | ||
<> | ||
<Hero /> | ||
<div className="flex flex-col justify-center items-center py-10 px-5 mb-20"> | ||
<div className="text-4xl font-bold text-center text-gray-200 mb-4"> | ||
Upcoming Events | ||
</div> | ||
<Link href="/form"> | ||
<Image | ||
src={"/images/sih.png"} | ||
alt="sih" | ||
height={400} | ||
width={1100} | ||
className="rounded-3xl border-2 border-slate-500" | ||
/> | ||
</Link> | ||
<Link href="/form"> | ||
<button className="btn-sm text-xl text-black bg-green-500 mx-3 rounded-xl mt-5"> | ||
Register for SIH | ||
</button> | ||
</Link> | ||
</div> | ||
<Domains /> | ||
<Landing /> | ||
</> | ||
) | ||
); | ||
} |
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.