-
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
1 parent
0554817
commit 4d3dd5e
Showing
11 changed files
with
105 additions
and
137 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,3 +1,9 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"editor.formatOnSave": true, | ||
"files.autoSave": "onFocusChange", | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit" | ||
}, | ||
"eslint.validate": ["javascript"] | ||
} |
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,9 @@ | ||
import { Link } from "@nextui-org/link"; | ||
import { Snippet } from "@nextui-org/snippet"; | ||
import { Code } from "@nextui-org/code"; | ||
import { button as buttonStyles } from "@nextui-org/theme"; | ||
|
||
import { siteConfig } from "@/config/site"; | ||
import { title, subtitle } from "@/components/primitives"; | ||
import { GithubIcon } from "@/components/icons"; | ||
|
||
export default function Home() { | ||
return ( | ||
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10"> | ||
<div className="inline-block max-w-xl text-center justify-center"> | ||
<span className={title()}>Make </span> | ||
<span className={title({ color: "violet" })}>beautiful </span> | ||
<br /> | ||
<span className={title()}> | ||
websites regardless of your design experience. | ||
</span> | ||
<div className={subtitle({ class: "mt-4" })}> | ||
Beautiful, fast and modern React UI library. | ||
</div> | ||
</div> | ||
|
||
<div className="flex gap-3"> | ||
<Link | ||
isExternal | ||
className={buttonStyles({ | ||
color: "primary", | ||
radius: "full", | ||
variant: "shadow", | ||
})} | ||
href={siteConfig.links.docs} | ||
> | ||
Documentation | ||
</Link> | ||
<Link | ||
isExternal | ||
className={buttonStyles({ variant: "bordered", radius: "full" })} | ||
href={siteConfig.links.github} | ||
> | ||
<GithubIcon size={20} /> | ||
GitHub | ||
</Link> | ||
</div> | ||
<div className="inline-block max-w-xl text-center justify-center" /> | ||
|
||
<div className="mt-8"> | ||
<Snippet hideCopyButton hideSymbol variant="bordered"> | ||
<span> | ||
Get started by editing <Code color="primary">app/page.tsx</Code> | ||
</span> | ||
</Snippet> | ||
</div> | ||
<div className="flex gap-3" /> | ||
</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
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