-
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.
- Loading branch information
Showing
3 changed files
with
55 additions
and
59 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,30 +1,27 @@ | ||
import ButtonOutline from "./Button-Outline"; | ||
import ButtonOutline from './Button-Outline'; | ||
|
||
export default function Layout() { | ||
return ( | ||
<section className="pb-12 pt-12"> | ||
<div className="flex flex-col md:flex-row items-center md:items-start"> | ||
<div className="p-2 md:w-1/2 mb-4 md:mb-0"> | ||
<img | ||
className="w-full md:w-[500px] object-contain" | ||
src="../../public/isotypeLinx.png" | ||
alt="Isotype Linx" | ||
/> | ||
</div> | ||
<div className="p-2 md:pl-8"> | ||
<h1 className="text-slate-950 text-2xl font-bold mb-4">Linx</h1> | ||
<p className="pb-2"> | ||
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Repellat | ||
error corrupti vitae incidunt totam blanditiis, voluptatem ratione | ||
eius consequuntur qui. Quae laborum quasi assumenda ea autem beatae, | ||
sed corrupti atque! | ||
</p> | ||
<ButtonOutline type="button"> | ||
Button | ||
</ButtonOutline> | ||
</div> | ||
return ( | ||
<section className="pb-12 pt-12"> | ||
<div className="flex flex-col md:flex-row items-center md:items-start"> | ||
<div className="p-2 md:w-1/2 mb-4 md:mb-0"> | ||
<img | ||
className="w-full md:w-[500px] object-contain" | ||
src="../../public/isotypeLinx.png" | ||
alt="Isotype Linx" | ||
/> | ||
</div> | ||
</section> | ||
); | ||
} | ||
|
||
<div className="p-2 md:pl-8"> | ||
<h1 className="text-slate-950 text-2xl font-bold mb-4">Linx</h1> | ||
<p className="pb-2"> | ||
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Repellat | ||
error corrupti vitae incidunt totam blanditiis, voluptatem ratione | ||
eius consequuntur qui. Quae laborum quasi assumenda ea autem beatae, | ||
sed corrupti atque! | ||
</p> | ||
<ButtonOutline type="button">Button</ButtonOutline> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
} |
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,31 +1,30 @@ | ||
export default function Navbar() { | ||
return ( | ||
<> | ||
<nav className="p-4 border-b-2 border-blue-500"> | ||
<div className="container mx-auto flex justify-between items-center"> | ||
<div className="text-slate-950 text-2xl font-bold"> | ||
return ( | ||
<> | ||
<nav className="p-4 border-b-2 border-blue-500"> | ||
<div className="container mx-auto flex justify-between items-center"> | ||
<div className="text-slate-950 text-2xl font-bold"> | ||
<img className="w-20" src="/logotypeLinx.png" alt="Logotype Linx" /> | ||
</div> | ||
<ul className="flex space-x-4"> | ||
<li> | ||
<a href="#product" className="text-slate-950 hover:text-blue-700"> | ||
Product | ||
</a> | ||
</li> | ||
<li> | ||
<a href="#login" className="text-slate-950 hover:text-blue-700"> | ||
Login | ||
</a> | ||
</li> | ||
<li> | ||
<a href="#signup" className="text-slate-950 hover:text-blue-700"> | ||
Sign Up | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</> | ||
); | ||
} | ||
|
||
<ul className="flex space-x-4"> | ||
<li> | ||
<a href="#product" className="text-slate-950 hover:text-blue-700"> | ||
Product | ||
</a> | ||
</li> | ||
<li> | ||
<a href="#login" className="text-slate-950 hover:text-blue-700"> | ||
Login | ||
</a> | ||
</li> | ||
<li> | ||
<a href="#signup" className="text-slate-950 hover:text-blue-700"> | ||
Sign Up | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</> | ||
); | ||
} |
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,10 +1,10 @@ | ||
import Navbar from '../components/Navbar' | ||
import Layout from '../components/Layout-Home' | ||
import Layout from '../components/Layout-Home'; | ||
import Navbar from '../components/Navbar'; | ||
export default function Home() { | ||
return ( | ||
<> | ||
<Navbar /> | ||
<Layout /> | ||
</> | ||
) | ||
} | ||
); | ||
} |