10 Commits

Author SHA1 Message Date
d100f911c7 Merge version_6 into main
Merge version_6 into main
2026-04-16 14:25:44 +00:00
063b51b8ce Update theme fonts 2026-04-16 14:25:38 +00:00
1d98c15f32 Update theme fonts 2026-04-16 14:25:38 +00:00
e47e99487e Merge version_6 into main
Merge version_6 into main
2026-04-16 14:25:23 +00:00
b247dc18a7 Update theme colors 2026-04-16 14:25:19 +00:00
76c13a7c30 Merge version_5 into main
Merge version_5 into main
2026-04-16 14:24:40 +00:00
1fde563e66 Update theme colors 2026-04-16 14:24:37 +00:00
602b962dd8 Merge version_4 into main
Merge version_4 into main
2026-04-16 14:19:45 +00:00
16e58cf0f9 Update src/app/page.tsx 2026-04-16 14:19:42 +00:00
7744b06922 Merge version_3 into main
Merge version_3 into main
2026-04-16 14:17:45 +00:00
4 changed files with 29 additions and 24 deletions

View File

@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -22,12 +23,13 @@ export const metadata: Metadata = {
},
};
const manrope = Manrope({
variable: "--font-manrope",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
@@ -39,7 +41,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -3,10 +3,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
@@ -147,30 +147,33 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={true}
<FaqBase
title="Common Questions"
description="Find answers to frequently asked questions about our AI platform."
faqs={[{ id: "f1", title: "How does the AI work?", content: "Neural networks parse your notes." }, { id: "f2", title: "Is my data private?", content: "Yes, encrypted." }]}
sideTitle="Common Questions"
faqsAnimation="blur-reveal"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
className="text-left"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "sparkles-gradient" }}
<ContactCenter
tag="Contact Us"
title="Ready to Start Your Journey?"
description="Get in touch to learn more about our AI capabilities."
imageSrc="http://img.b2bpic.net/free-photo/system-administrator-ai-server-farm_482257-75524.jpg"
mediaAnimation="slide-up"
useInvertedBackground={false}
background={{ variant: "plain" }}
className="text-left"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[{ items: [{ label: "Product", href: "#products" }, { label: "Pricing", href: "#pricing" }] }]}
<FooterBase
columns={[{ title: "Company", items: [{ label: "Product", href: "#products" }, { label: "Pricing", href: "#pricing" }] }]}
logoText="zn class"
className="text-left"
/>
</div>
</ReactLenis>

View File

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

View File

@@ -10,10 +10,10 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #0a0a0a;
--card: #1a1a1a;
--background: #000000;
--card: #000000;
--foreground: #ffffff;
--primary-cta: #1f7cff;
--primary-cta: #000000;
--primary-cta-text: #ffffff;
--secondary-cta: #010101;
--secondary-cta-text: #ffffff;