Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
Fedbxy committed Jul 21, 2024
1 parent 3bd035e commit 1e2e260
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
48 changes: 24 additions & 24 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,38 +7,38 @@ import {

export default function Page() {
return (
<div className="flex flex-col">
<div className="m-12 flex flex-col">
<div className="flex flex-row">
<div className="flex flex-col">
<img src="cabibara.webp" alt="" />
</div>
<div>
<img src="cabibara.webp" alt="" />
</div>
<div className="flex flex-col">
<img src="cabibara.webp" alt="" />
</div>
<div>
<img src="cabibara.webp" alt="" />
</div>
</div>
<div className="flex flex-row">
<h1>About us</h1>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nemo reprehenderit alias natus, enim atque corporis ratione esse expedita ea facilis! Dolorem eos animi sapiente necessitatibus cum! Unde animi vitae veniam!</p>
</div>
<div className="flex flex-row">
<h1>F&Q</h1>
<Accordion type="single" collapsible>
<AccordionItem value="item-1">
<AccordionTrigger>Is it accessible?</AccordionTrigger>
<AccordionContent>
Yes. It adheres to the WAI-ARIA design pattern.
</AccordionContent>
<AccordionTrigger>Is it accessible?</AccordionTrigger>
<AccordionContent>
Yes. It adheres to the WAI-ARIA design pattern.
</AccordionContent>
<AccordionTrigger>Is it accessible?</AccordionTrigger>
<AccordionContent>
Yes. It adheres to the WAI-ARIA design pattern.
</AccordionContent>
</AccordionItem>
</Accordion>
</div>
<Accordion type="single" collapsible>
<AccordionItem value="item-1">
<AccordionTrigger>Is it accessible?</AccordionTrigger>
<AccordionContent>
Yes. It adheres to the WAI-ARIA design pattern.
</AccordionContent>
<AccordionTrigger>Is it accessible?</AccordionTrigger>
<AccordionContent>
Yes. It adheres to the WAI-ARIA design pattern.
</AccordionContent>
<AccordionTrigger>Is it accessible?</AccordionTrigger>
<AccordionContent>
Yes. It adheres to the WAI-ARIA design pattern.
</AccordionContent>
</AccordionItem>
</Accordion>
</div>
</div>
);
}
2 changes: 1 addition & 1 deletion src/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function Navbar() {
<div className="container flex h-[4rem] max-w-screen-2xl items-center">
<div className="mr-6 flex items-center space-x-2">
<Link href="/">
<h1 className="font-bold">brand</h1>
<h1 className="font-bold">CashyBuddy</h1>
</Link>
</div>
<div className="flex flex-row items-center space-x-4">
Expand Down

0 comments on commit 1e2e260

Please sign in to comment.