Skip to content

Commit

Permalink
Merge pull request #35 from fac29/landing
Browse files Browse the repository at this point in the history
Landing Page
  • Loading branch information
that-Gui authored Jul 29, 2024
2 parents 1b804e8 + f9e496d commit 261af5c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 24 deletions.
15 changes: 0 additions & 15 deletions app/landing/page.tsx

This file was deleted.

27 changes: 18 additions & 9 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,26 +1,35 @@
import { ModeToggle } from '@/components/modetoggle';
import { Button } from '@/components/ui/button';
import { ModeToggle } from "@/components/modetoggle";
import { Button } from "@/components/ui/button";
import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
} from '@/components/ui/accordion';
} from "@/components/ui/accordion";

//import Image from 'next/image';

export default function Home() {
return (
<div className='flex min-h-screen flex-col items-center justify-between p-24'>
<div>
<div className="flex min-h-screen flex-col items-center justify-between">
<img
className="p-4 m-2 w-1/2 w-500 transition-transform duration-1000 hover:scale-105 hover:brightness-105"
src="The-Norm_Wheel_MAIN_All-Colours_1.svg"
alt=""
/>
<h1 className="text-3xl font-bold mb-8 text-gray-800">the norm</h1>
<h2>find and nourish yours now</h2>
{/* <img src="The-Norm_Wheel_WHITE 1.jpg" alt="" /> */}

{/* <div>
<ModeToggle />
</div>
</div> */}
<div>
<Button variant='default'>Hello</Button>
<Button variant="default">Start now..</Button>
</div>
<div>
<Accordion type='single' collapsible>
<AccordionItem value='item-1'>
<Accordion type="single" collapsible>
<AccordionItem value="item-1">
<AccordionTrigger>Is it accessible?</AccordionTrigger>
<AccordionContent>
Yes. It adheres to the WAI-ARIA design pattern.
Expand Down

0 comments on commit 261af5c

Please sign in to comment.