diff --git a/apps/website/src/components/layout/navigation.tsx b/apps/website/src/components/layout/navigation.tsx index 135df64fa..fa223307f 100644 --- a/apps/website/src/components/layout/navigation.tsx +++ b/apps/website/src/components/layout/navigation.tsx @@ -52,7 +52,7 @@ const Header = () => { return ( - + {headerNav.map(({ href, id, ...props }, i) => { return ( - Figma early access + Figma Pro early access { + return ( + + + + + + + + + + + + ) +} + +const Figma = () => { + const figma = useDisclosure() + + return ( +
+ + + + Professionally crafted Figma design system for
designing + beautiful products at any scale. +
+ + } + pt={{ base: '8', lg: '20' }} + sx={{ mb: 0, textAlign: 'center' }} + /> + + + + + + +
+
+ ) +} + +const FigmaEmbed = () => { + return ( + + + Free community library + + + + + + ) +} + +export default FigmaPage + +export async function getStaticProps() { + return { + props: { + header: { + position: 'fixed', + variant: 'dark', + }, + }, + } +}