13 Commits

Author SHA1 Message Date
2c819f59f7 Merge version_7 into main
Merge version_7 into main
2026-03-03 19:44:05 +00:00
632d5f5b0e Update src/app/page.tsx 2026-03-03 19:44:01 +00:00
f8f07abea7 Merge version_7 into main
Merge version_7 into main
2026-03-03 19:32:32 +00:00
02a2e47483 Update src/app/page.tsx 2026-03-03 19:32:28 +00:00
55c361a9e7 Merge version_7 into main
Merge version_7 into main
2026-03-03 19:27:54 +00:00
01d82f500e Update src/app/styles/variables.css 2026-03-03 19:27:50 +00:00
499470486b Update src/app/styles/base.css 2026-03-03 19:27:50 +00:00
fa87385a30 Update src/app/page.tsx 2026-03-03 19:27:50 +00:00
4fca796f17 Update src/app/layout.tsx 2026-03-03 19:27:49 +00:00
86fd66cd4f Merge version_6 into main
Merge version_6 into main
2026-03-03 19:20:57 +00:00
0b1452ab23 Merge version_6 into main
Merge version_6 into main
2026-03-03 19:18:35 +00:00
1b10b9c9a3 Merge version_6 into main
Merge version_6 into main
2026-03-03 18:59:40 +00:00
f6c54fbecd Merge version_6 into main
Merge version_6 into main
2026-03-03 18:57:15 +00:00
4 changed files with 31 additions and 30 deletions

View File

@@ -1,10 +1,11 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
@@ -17,7 +18,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.variable}>
<body className={poppins.variable}>
{children}
<script

View File

@@ -11,7 +11,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Sparkles, Zap, Lightbulb, Rocket, Users, Star, HelpCircle, Download, Moon, Sun } from 'lucide-react';
import { Sparkles, Zap, Lightbulb, Rocket, Users, Star, HelpCircle, Download } from 'lucide-react';
import AnimatedChatDemo from '@/components/sections/demo/AnimatedChatDemo';
export default function LandingPage() {
@@ -19,16 +19,16 @@ export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="small"
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="noise"
cardStyle="soft-shadow"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="shadow"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered

View File

@@ -2,6 +2,6 @@
@layer base {
body {
font-family: var(--font-inter), sans-serif;
font-family: var(--font-poppins), sans-serif;
}
}

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #f5f3f0;;;
--card: #fdfcfb;;;
--foreground: #2a2520e6;;;
--primary-cta: #c69c7b;;;
--secondary-cta: #fdfcfb;;;
--accent: #e8dfd5;;;
--background-accent: #d4c4b0;;; */
/* --background: #ffffff;;;
--card: #f9f9f9;;;
--foreground: #000612e6;;;
--primary-cta: #106EFB;;;
--secondary-cta: #f9f9f9;;;
--accent: #e2e2e2;;;
--background-accent: #106EFB;;; */
--background: #f5f3f0;;;
--card: #fdfcfb;;;
--foreground: #2a2520e6;;;
--primary-cta: #c69c7b;;;
--background: #ffffff;;;
--card: #f9f9f9;;;
--foreground: #000612e6;;;
--primary-cta: #106EFB;;;
--primary-cta-text: #ffffff;;;
--secondary-cta: #fdfcfb;;;
--secondary-cta-text: #120a00e6;;;
--accent: #e8dfd5;;;
--background-accent: #d4c4b0;;;
--secondary-cta: #f9f9f9;;;
--secondary-cta-text: #000612e6;;;
--accent: #e2e2e2;;;
--background-accent: #106EFB;;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);