MCPcopy Create free account
hub / github.com/CodeWithHarry/Sigma-Web-Dev-Course / Home

Function Home

Video 136/bitlinks/app/page.js:13–36  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11});
12
13export default function Home() {
14 return (
15 <main className="bg-purple-100">
16 <section className="grid grid-cols-2 h-[50vh]">
17 <div className="flex flex-col gap-4 items-center justify-center">
18 <p className={`text-3xl font-bold ${poppins.className}`}>
19 The best URL shortener in the Market
20 </p>
21 <p className="px-56 text-center">
22 We are the most straightfoward URL Shortener in the world. Most of the url shorteners will track you or ask you to give your details for login. We understand your needs and hence we have created this URL shortener
23 </p>
24 <div className='flex gap-3 justify-start'>
25 <Link href="/shorten"><button className='bg-purple-500 rounded-lg shadow-lg p-3 py-1 font-bold text-white'>Try Now</button></Link>
26 <Link href="/github"><button className='bg-purple-500 rounded-lg shadow-lg p-3 py-1 font-bold text-white'>GitHub</button></Link>
27 </div>
28 </div>
29 <div className=" flex justify-start relative">
30 <Image className="mix-blend-darken" alt="an Image of a vector" src={"/vector.jpg"} fill={true} />
31 </div>
32
33 </section>
34 </main>
35 );
36}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected