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

chore: framerworks #62

Merged
merged 1 commit into from
Sep 22, 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
55 changes: 48 additions & 7 deletions apps/docs/app/(home)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import Link from 'next/link';
import InstallPage from './components/InstallPage';
import Access from './components/Access';
import Image from 'next/image';

export default function HomePage() {
return (
<main className='flex h-[calc(100vh-56px)] flex-col justify-center text-center'>
<main className='flex h-[calc(100vh-56px)] flex-col justify-center items-center text-center relative'>
<div
style={{
display: 'flex',
Expand All @@ -23,7 +24,7 @@ export default function HomePage() {
style={{
display: 'flex',
flexDirection: 'column',
gap: '30px',
gap: '25px',
justifyContent: 'center',
alignItems: 'center',
}}
Expand All @@ -33,24 +34,23 @@ export default function HomePage() {
application.
</p>
<h3
className='font-medium text-xl text-appTextSecondaryColor'
className='font-medium text-xl text-gray-400'
style={{
width: '50vw',
textAlign: 'center',
}}
>
The official React UI library built on top of Radix UI.
Open source components built on top of Radix UI.
</h3>

<div
className='meta-container'
style={{
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
marginTop: '50px',
gap: '2rem',
marginTop: '30px',
gap: '3rem',
}}
>
<div style={{ position: 'relative' }}>
Expand All @@ -61,9 +61,50 @@ export default function HomePage() {
<Access />
</div>
</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} />
<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} />
<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}
/>
<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}
/>
<p className='text-nowrap'>Framer Motion</p>
</div>
</div>
</div>
</div>
</div>
<div className='absolute bottom-4 '>
Reach out to me via{' '}
<a
target='_blank'
className='underline text-cyan-600'
href='https://x.com/SySagar2'
>
Twitter
</a>
</div>
</main>
);
}
2 changes: 2 additions & 0 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
},
"dependencies": {
"@groovy-box/ui": "*",
"@groovy-box/tokens": "*",
"framer-motion": "^11.5.6",
"fumadocs-core": "13.4.10",
"fumadocs-mdx": "10.0.2",
"fumadocs-ui": "13.4.10",
Expand Down
Binary file added apps/docs/public/framer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions apps/docs/public/logo.png:Zone.Identifier

This file was deleted.

4 changes: 4 additions & 0 deletions apps/docs/public/next.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions apps/docs/public/react.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions apps/docs/public/tailwind.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions apps/docs/public/ts.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading