feat: add email links and update navigation structure
This commit is contained in:
@@ -21,7 +21,7 @@ export default function Home() {
|
||||
<section id="home-hero">
|
||||
<HomeHero />
|
||||
</section>
|
||||
<section id="about">
|
||||
<section id="technologies">
|
||||
<StackSectionPreview />
|
||||
</section>
|
||||
<section id="bento-reviews">
|
||||
|
@@ -13,12 +13,14 @@ export function CallTo() {
|
||||
</P>
|
||||
<div className="mt-10 flex items-center justify-center gap-x-6">
|
||||
<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]"
|
||||
>
|
||||
Book a Meeting
|
||||
</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>
|
||||
</a>
|
||||
</div>
|
||||
|
@@ -33,10 +33,16 @@ export function CallToAction() {
|
||||
build your own. Ready to own your intelligence?
|
||||
</p>
|
||||
<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
|
||||
</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
|
||||
</Button>
|
||||
</div>
|
||||
|
@@ -23,11 +23,9 @@ export function NavLinks() {
|
||||
};
|
||||
|
||||
return [
|
||||
['About', '/#about'],
|
||||
['Technologies', '/#technologies'],
|
||||
['Network', '/#network'],
|
||||
['Deploy', '/#deploy'],
|
||||
['LLMs', '/#llms'],
|
||||
['Features', '/#features'],
|
||||
['How it Works', '/#how-it-works'],
|
||||
['Get Started', '/#get-started'],
|
||||
].map(([label, href], index) => (
|
||||
<Link
|
||||
|
Reference in New Issue
Block a user