Update .gitignore and remove cached build artifacts
This commit is contained in:
@@ -8,12 +8,13 @@ import { SecondaryFeatures } from '@/components/SecondaryFeatures'
|
||||
import { Benefits } from '@/components/Benefits'
|
||||
import { About } from '@/components/About'
|
||||
import { HomeHero } from '@/components/HomeHero'
|
||||
import { HomeAbout } from '@/components/HomeAbout'
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<>
|
||||
<HomeHero />
|
||||
<About />
|
||||
<HomeAbout />
|
||||
<Benefits />
|
||||
<PrimaryFeatures />
|
||||
<UseCases />
|
||||
|
@@ -1,13 +1,13 @@
|
||||
import { type Metadata } from 'next'
|
||||
import { Inter } from 'next/font/google'
|
||||
import { Mulish } from 'next/font/google'
|
||||
import clsx from 'clsx'
|
||||
|
||||
import '@/styles/tailwind.css'
|
||||
|
||||
const inter = Inter({
|
||||
const mulish = Mulish({
|
||||
subsets: ['latin'],
|
||||
display: 'swap',
|
||||
variable: '--font-inter',
|
||||
variable: '--font-mulish',
|
||||
})
|
||||
|
||||
export const metadata: Metadata = {
|
||||
@@ -25,7 +25,7 @@ export default function RootLayout({
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" className={clsx('bg-gray-50 antialiased', inter.variable)}>
|
||||
<html lang="en" className={clsx('bg-white antialiased', mulish.variable)}>
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
)
|
||||
|
Reference in New Issue
Block a user