Update .gitignore and remove cached build artifacts

This commit is contained in:
2025-09-12 17:30:21 +02:00
parent 7ad8d609f6
commit f50ead55cb
146 changed files with 215 additions and 25799 deletions

View File

@@ -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 />

View File

@@ -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>
)