-
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.
update starter to reflect new patterns
- Loading branch information
1 parent
f3e501c
commit 10f7aff
Showing
5 changed files
with
300 additions
and
36 deletions.
There are no files selected for viewing
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,24 @@ | ||
import { | ||
Breadcrumb, | ||
BreadcrumbItem, | ||
BreadcrumbLink, | ||
BreadcrumbList, | ||
BreadcrumbSeparator, | ||
} from "@arbetsmarknad/components/Breadcrumb"; | ||
import { Breadcrumbs } from "@arbetsmarknad/components/Breadcrumb"; | ||
import { Container } from "@arbetsmarknad/components/Container"; | ||
import { HeaderMenu } from "@arbetsmarknad/components/HeaderMenu"; | ||
import { Page } from "@arbetsmarknad/components/Page"; | ||
import { Main } from "@arbetsmarknad/components/Main"; | ||
import { TopLevelHeading } from "@arbetsmarknad/components/TopLevelHeading"; | ||
|
||
export default function Home() { | ||
return ( | ||
<Page> | ||
<HeaderMenu | ||
href="https://arbetsmarknad.github.io" | ||
text="arbetsmarknad.github.io" | ||
/> | ||
<Breadcrumb className="py-4 w-full flex justify-center"> | ||
<Container> | ||
<BreadcrumbList> | ||
<BreadcrumbItem> | ||
<BreadcrumbLink href="/">Arbetsmarknad</BreadcrumbLink> | ||
</BreadcrumbItem> | ||
<BreadcrumbSeparator /> | ||
<BreadcrumbItem> | ||
<BreadcrumbLink href="/components">Components</BreadcrumbLink> | ||
</BreadcrumbItem> | ||
</BreadcrumbList> | ||
</Container> | ||
</Breadcrumb> | ||
<main className="flex flex-col items-center w-full py-4"> | ||
<> | ||
<Breadcrumbs> | ||
{{ | ||
"https://arbetsmarknad.github.io/": "Arbetsmarknad", | ||
"/next": "Next", | ||
}} | ||
</Breadcrumbs> | ||
<Main> | ||
<Container className="flex flex-col items-start space-y-4"> | ||
<TopLevelHeading text="Arbetsmarknad Starter Project" /> | ||
<p>This is a starter project for Arbetsmarknad web content.</p> | ||
</Container> | ||
</main> | ||
</Page> | ||
</Main> | ||
</> | ||
); | ||
} |
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.