Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: hero framework icons #63

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 8 additions & 14 deletions apps/docs/app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ import Link from 'next/link';
import InstallPage from './components/InstallPage';
import Access from './components/Access';
import Image from 'next/image';
import { FaReact } from 'react-icons/fa';
import { SiNextdotjs } from 'react-icons/si';
import { RiTailwindCssFill } from 'react-icons/ri';
import { SiFramer } from 'react-icons/si';

export default function HomePage() {
return (
Expand Down Expand Up @@ -63,32 +67,22 @@ export default function HomePage() {
</div>
<div className='stack flex flex-row gap-10 justify-center items-center'>
<div className='flex flex-row gap-2 w-full justify-center items-center'>
<Image src='/react.svg' alt='react' width={30} height={30} />
<FaReact size={28} />
<p>React.js</p>
</div>

<div className='flex flex-row gap-2 w-full justify-center items-center'>
<Image src='/next.svg' alt='next' width={30} height={30} />
<SiNextdotjs size={27} />
<p>Next.js</p>
</div>

<div className='flex flex-row gap-2 w-full justify-center items-center'>
<Image
src='/tailwind.svg'
alt='tailwind'
width={30}
height={30}
/>
<RiTailwindCssFill size={29} />
<p className='text-nowrap'>Tailwind css</p>
</div>

<div className='flex flex-row gap-2 w-full pl-2 justify-center items-center'>
<Image
src='/framer.png'
alt='framer motion'
width={25}
height={25}
/>
<SiFramer size={25} />
<p className='text-nowrap'>Framer Motion</p>
</div>
</div>
Expand Down
Binary file added apps/docs/app/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions apps/docs/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ const inter = Inter({
export default function Layout({ children }: { children: ReactNode }) {
return (
<html lang='en' className={inter.className} suppressHydrationWarning>
<head>
<link rel='icon' />
<title>Groovy-Box/ui</title>
</head>
<body>
<RootProvider>{children}</RootProvider>
</body>
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"postinstall": "fumadocs-mdx"
},
"dependencies": {
"@groovy-box/ui": "*",
"@groovy-box/tokens": "*",
"@groovy-box/ui": "*",
"framer-motion": "^11.5.6",
"fumadocs-core": "13.4.10",
"fumadocs-mdx": "10.0.2",
Expand Down
Binary file removed apps/docs/public/framer.png
Binary file not shown.
4 changes: 0 additions & 4 deletions apps/docs/public/next.svg

This file was deleted.

3 changes: 0 additions & 3 deletions apps/docs/public/react.svg

This file was deleted.

3 changes: 0 additions & 3 deletions apps/docs/public/tailwind.svg

This file was deleted.

30 changes: 28 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading