feat: add email links and update navigation structure

This commit is contained in:
2025-09-19 14:01:47 +02:00
parent 41d4c3a054
commit ab14a5a8e5
4 changed files with 15 additions and 9 deletions

View File

@@ -21,7 +21,7 @@ export default function Home() {
<section id="home-hero"> <section id="home-hero">
<HomeHero /> <HomeHero />
</section> </section>
<section id="about"> <section id="technologies">
<StackSectionPreview /> <StackSectionPreview />
</section> </section>
<section id="bento-reviews"> <section id="bento-reviews">

View File

@@ -13,12 +13,14 @@ export function CallTo() {
</P> </P>
<div className="mt-10 flex items-center justify-center gap-x-6"> <div className="mt-10 flex items-center justify-center gap-x-6">
<a <a
href="#" href="mailto:info@ourworld.tf"
target="_blank"
rel="noopener noreferrer"
className="rounded-md bg-[#2F3178] px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-[#2F3178]/80 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-[#2F3178]" className="rounded-md bg-[#2F3178] px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-[#2F3178]/80 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-[#2F3178]"
> >
Book a Meeting Book a Meeting
</a> </a>
<a href="#" className="text-sm/6 font-semibold text-[#2F3178] hover:text-[#2F3178]/80"> <a href="mailto:info@ourworld.tf" target="_blank" rel="noopener noreferrer" className="text-sm/6 font-semibold text-[#2F3178] hover:text-[#2F3178]/80">
Join the Waitlist <span aria-hidden="true"></span> Join the Waitlist <span aria-hidden="true"></span>
</a> </a>
</div> </div>

View File

@@ -33,10 +33,16 @@ export function CallToAction() {
build your own. Ready to own your intelligence? build your own. Ready to own your intelligence?
</p> </p>
<div className="mt-8 flex justify-center gap-x-6"> <div className="mt-8 flex justify-center gap-x-6">
<Button variant="solid" color="cyan" href="#"> <Button
variant="solid"
color="cyan"
href="mailto:info@ourworld.tf"
target="_blank"
rel="noopener noreferrer"
>
Book a Meeting Book a Meeting
</Button> </Button>
<Button href="#" variant="outline" color="white"> <Button href="mailto:info@ourworld.tf" target="_blank" rel="noopener noreferrer" variant="outline" color="white">
Join the Waitlist Join the Waitlist
</Button> </Button>
</div> </div>

View File

@@ -23,11 +23,9 @@ export function NavLinks() {
}; };
return [ return [
['About', '/#about'], ['Technologies', '/#technologies'],
['Network', '/#network'], ['Network', '/#network'],
['Deploy', '/#deploy'], ['How it Works', '/#how-it-works'],
['LLMs', '/#llms'],
['Features', '/#features'],
['Get Started', '/#get-started'], ['Get Started', '/#get-started'],
].map(([label, href], index) => ( ].map(([label, href], index) => (
<Link <Link