-
Notifications
You must be signed in to change notification settings - Fork 2
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
11 changed files
with
169 additions
and
111 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,9 +1,20 @@ | ||
import { TypographyDemo } from "@/components/design/Typography"; | ||
import { H2, Paragraph } from "@design/Typography"; | ||
import { Header } from "@design/Header"; | ||
|
||
export default function Page() { | ||
return ( | ||
<div className="container mx-auto"> | ||
<TypographyDemo/> | ||
<div className="min-h-screen lg:border-x container lg:mx-auto text-foreground lg:grid lg:grid-cols-[240px_1fr]"> | ||
<div className="border-r"></div> | ||
<div> | ||
<Header /> | ||
<div className="box"> | ||
<H2>Design System</H2> | ||
<Paragraph className="text-muted-foreground"> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Harum atque | ||
aliquid omnis odit voluptate a repellendus possimus. | ||
</Paragraph> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,5 +1,5 @@ | ||
import "./global.css"; | ||
import React from "react"; | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: { | ||
|
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from "react"; | ||
import { Link } from "./Typography"; | ||
|
||
type Props = {}; | ||
|
||
export function Header({}: Props) { | ||
return ( | ||
<header className="bg-background w-full h-[3.5em] px-4 md:px-12 flex items-center border-b"> | ||
<Link className="no-underline">Arkar Myat</Link> | ||
</header> | ||
); | ||
} |
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
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