This commit is contained in:
2025-09-08 15:27:33 +02:00
parent 4bea627e6d
commit a69f35c9a7
21 changed files with 254 additions and 46 deletions

View File

@@ -1,5 +1,4 @@
import { CallToAction } from '@/components/CallToAction'
import { Faqs } from '@/components/Faqs'
import { Hero } from '@/components/Hero'
import { Pricing } from '@/components/Pricing'
import { PrimaryFeatures } from '@/components/PrimaryFeatures'
@@ -16,6 +15,8 @@ import { AppsPreview } from '@/components/Apps'
import { FarmerPreview } from '@/components/Farmer'
import { TfDashboard } from '@/components/TfDashboard'
import { ProductsPreview } from '@/components/Products'
import { CallTo } from '@/components/CallTo'
import { Faqss } from '@/components/Faqs'
export default function Home() {
@@ -28,7 +29,8 @@ export default function Home() {
<TfDashboard />
<AppsPreview />
<ProductsPreview />
<CallTo />
<Faqss />
</>
)
}

View File

@@ -12,11 +12,11 @@ const inter = Inter({
export const metadata: Metadata = {
title: {
template: '%s - EngageOS',
default: 'EngageOS - Invest at the perfect time.',
template: '%s - ThreeFold',
default: 'ThreeFold - Decentralized internet by everyone, for everyone.',
},
description:
'By leveraging insights from our network of industry insiders, youll know exactly when to buy to maximize profit, and exactly when to sell to avoid painful losses.',
'ThreeFold is a fully operational, decentralized internet infrastructure deployed locally, scalable globally, and owned and powered by the people.',
}
export default function RootLayout({
@@ -25,8 +25,10 @@ export default function RootLayout({
children: React.ReactNode
}) {
return (
<html lang="en" className={clsx('antialiased', inter.variable)} style={{ backgroundColor: '#121212' }}>
<body style={{ backgroundColor: '#121212', color: '#ffffff' }}>{children}</body>
<html lang="en" className={clsx('antialiased', inter.variable)} suppressHydrationWarning>
<body className="bg-[#121212] text-white" suppressHydrationWarning>
{children}
</body>
</html>
)
}