11 Commits

Author SHA1 Message Date
2c636b90f7 Merge version_3 into main
Merge version_3 into main
2026-04-21 09:44:42 +00:00
6063e85c73 Update src/app/styles/variables.css 2026-04-21 09:44:39 +00:00
1e41b39f41 Update src/app/page.tsx 2026-04-21 09:44:39 +00:00
67b7dece98 Merge version_2 into main
Merge version_2 into main
2026-04-21 09:35:17 +00:00
47347ad5dd Update theme fonts 2026-04-21 09:35:14 +00:00
599681b1e6 Update theme fonts 2026-04-21 09:35:13 +00:00
f0b88d7c98 Merge version_2 into main
Merge version_2 into main
2026-04-21 09:35:00 +00:00
55223c9b73 Update theme colors 2026-04-21 09:34:57 +00:00
a9a3d287b3 Merge version_1 into main
Merge version_1 into main
2026-04-21 09:32:42 +00:00
02ee821461 Merge version_1 into main
Merge version_1 into main
2026-04-21 09:32:15 +00:00
cc1fc6b901 Merge version_1 into main
Merge version_1 into main
2026-04-21 09:31:46 +00:00
4 changed files with 27 additions and 14 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google";
import { Manrope } from "next/font/google";
@@ -23,8 +24,9 @@ export const metadata: Metadata = {
},
};
const nunito = Nunito({
variable: "--font-nunito",
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
@@ -36,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body className={`${manrope.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -7,6 +7,7 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
@@ -77,6 +78,16 @@ export default function LandingPage() {
/>
</div>
<div id="logo-billboard" data-section="logo-billboard">
<HeroLogo
logoText="Trusted by Global Institutions"
description="Building the infrastructure for the next generation of digital assets."
buttons={[{ text: "Explore Assets", href: "#features" }]}
imageSrc="http://img.b2bpic.net/free-photo/blockchain-technology-cartoon-illustration_23-2151572142.jpg"
imageAlt="Trusted partners logos"
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwelve
animationType="slide-up"
@@ -204,4 +215,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-nunito), sans-serif;
font-family: var(--font-manrope), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-nunito), sans-serif;
font-family: var(--font-manrope), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #010912;
--card: #0a1524;
--foreground: #e6f0ff;
--background: #f5faff;
--card: #f1f8ff;
--foreground: #001122;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #152840;
--secondary-cta-text: #e6f0ff;
--accent: #3f5c79;
--background-accent: #004a93;
--primary-cta-text: #280101;
--secondary-cta: #ffffff;
--secondary-cta-text: #f6d4d4;
--accent: #a8cce8;
--background-accent: #7ba3cf;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);