This commit is contained in:
2025-09-29 19:18:33 +02:00
parent 4cc20ac13f
commit 7b5afa588e
2 changed files with 7 additions and 8 deletions

View File

@@ -1,5 +1,4 @@
import { type Metadata } from 'next'
import { Footer } from '@/components/Footer'
import { Mulish } from 'next/font/google'
import clsx from 'clsx'
@@ -27,7 +26,7 @@ export default function RootLayout({
}) {
return (
<html lang="en" className={clsx('antialiased', mulish.variable)}>
<body className="bg-black text-white">{children}<Footer /></body>
<body className="bg-black text-white">{children}</body>
</html>
)
}

View File

@@ -110,10 +110,10 @@ export function Header() {
<NavLinks className="block text-base/7 tracking-tight" />
</div>
<div className="mt-8 flex flex-col gap-4">
<Button href="https://docs.ourworld.tf/mycelium_cloud/docs/" variant="outline" color="white" target="_blank" rel="noopener noreferrer">
Docs
<Button href="mailto:info@ourworld.tf" variant="outline" color="white" target="_blank" rel="noopener noreferrer">
Join the Waitlist
</Button>
<Button href="https://www.mycelium.threefold.io/download/" color="cyan">Get Started</Button>
<Button href="https://calendly.com/sachao/30min" color="cyan">Book a Meeting</Button>
</div>
</PopoverPanel>
</>
@@ -123,10 +123,10 @@ export function Header() {
)}
</Popover>
<div className="flex items-center gap-6 max-lg:hidden">
<Button href="https://docs.ourworld.tf/mycelium_cloud/docs/" variant="outline" color="white" target="_blank" rel="noopener noreferrer">
Docs
<Button href="mailto:info@ourworld.tf" variant="outline" color="white" target="_blank" rel="noopener noreferrer">
Join the Waitlist
</Button>
<Button href="https://www.mycelium.threefold.io/download/" color="cyan">Get Started</Button>
<Button href="https://calendly.com/sachao/30min" color="cyan">Book a Meeting</Button>
</div>
</div>
</Container>