chore(lp): 📦️ Import existing Landing page
This commit is contained in:
53
apps/landing-page/components/common/Navbar/_data.tsx
Executable file
53
apps/landing-page/components/common/Navbar/_data.tsx
Executable file
@ -0,0 +1,53 @@
|
||||
import { BookIcon } from 'assets/icons/BookIcon'
|
||||
import { DocIcon } from 'assets/icons/DocIcon'
|
||||
import { MapIcon } from 'assets/icons/MapIcon'
|
||||
import { PeopleCircleIcon } from 'assets/icons/PeopleCircleIcon'
|
||||
import * as React from 'react'
|
||||
|
||||
export interface Link {
|
||||
label: string
|
||||
href?: string
|
||||
children?: Array<{
|
||||
label: string
|
||||
description?: string
|
||||
href: string
|
||||
icon?: React.ReactElement
|
||||
}>
|
||||
}
|
||||
|
||||
export const links = [
|
||||
{
|
||||
label: 'Resources',
|
||||
children: [
|
||||
{
|
||||
label: 'Blog',
|
||||
description:
|
||||
"Content about high-performing forms and guides on how to leverage Typebot's power",
|
||||
href: '/blog',
|
||||
icon: <BookIcon />,
|
||||
},
|
||||
{
|
||||
label: 'Documentation',
|
||||
description:
|
||||
"Everything you need to know about how to use Typebot's builder",
|
||||
href: 'https://docs.typebot.io',
|
||||
icon: <DocIcon />,
|
||||
},
|
||||
{
|
||||
label: 'Roadmap',
|
||||
description:
|
||||
"Follow the development and make suggestions for which features you'd like to see",
|
||||
href: 'https://feedback.typebot.io/roadmap',
|
||||
icon: <MapIcon />,
|
||||
},
|
||||
{
|
||||
label: 'Community',
|
||||
description:
|
||||
'Join our facebook community and get insights on how to create high performing surveys',
|
||||
href: 'https://www.facebook.com/groups/262165102257585',
|
||||
icon: <PeopleCircleIcon />,
|
||||
},
|
||||
],
|
||||
},
|
||||
{ label: 'Pricing', href: '/pricing' },
|
||||
]
|
Reference in New Issue
Block a user