From 3ddf8771c8afc02025384a5e83090897a13dfeab Mon Sep 17 00:00:00 2001 From: Pagebakers Date: Fri, 17 Nov 2023 12:21:46 +0100 Subject: [PATCH] chore: add figma landing --- .../src/components/layout/navigation.tsx | 2 +- .../src/components/signup-form/index.tsx | 2 +- apps/website/src/pages/figma.tsx | 141 ++++++++++++++++++ 3 files changed, 143 insertions(+), 2 deletions(-) create mode 100644 apps/website/src/pages/figma.tsx 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', + }, + }, + } +}