Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 632d5f5b0e | |||
| 02a2e47483 | |||
| 01d82f500e | |||
| 499470486b | |||
| fa87385a30 | |||
| 4fca796f17 | |||
| 86fd66cd4f | |||
| 0b1452ab23 | |||
| 1b10b9c9a3 | |||
| f6c54fbecd |
@@ -1,10 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import "./styles/variables.css";
|
import "./styles/variables.css";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const inter = Inter({
|
const poppins = Poppins({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-poppins", subsets: ["latin"],
|
||||||
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -17,7 +18,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={inter.variable}>
|
<body className={poppins.variable}>
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
|
|||||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
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';
|
import AnimatedChatDemo from '@/components/sections/demo/AnimatedChatDemo';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -19,16 +19,16 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="expand-hover"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="medium"
|
||||||
sizing="mediumLargeSizeLargeTitles"
|
sizing="mediumLargeSizeLargeTitles"
|
||||||
background="noise"
|
background="none"
|
||||||
cardStyle="soft-shadow"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="shadow"
|
||||||
secondaryButtonStyle="layered"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="extrabold"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
|
|||||||
@@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
@layer base {
|
@layer base {
|
||||||
body {
|
body {
|
||||||
font-family: var(--font-inter), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f3f0;;;
|
/* --background: #ffffff;;;
|
||||||
--card: #fdfcfb;;;
|
--card: #f9f9f9;;;
|
||||||
--foreground: #2a2520e6;;;
|
--foreground: #000612e6;;;
|
||||||
--primary-cta: #c69c7b;;;
|
--primary-cta: #106EFB;;;
|
||||||
--secondary-cta: #fdfcfb;;;
|
--secondary-cta: #f9f9f9;;;
|
||||||
--accent: #e8dfd5;;;
|
--accent: #e2e2e2;;;
|
||||||
--background-accent: #d4c4b0;;; */
|
--background-accent: #106EFB;;; */
|
||||||
|
|
||||||
--background: #f5f3f0;;;
|
--background: #ffffff;;;
|
||||||
--card: #fdfcfb;;;
|
--card: #f9f9f9;;;
|
||||||
--foreground: #2a2520e6;;;
|
--foreground: #000612e6;;;
|
||||||
--primary-cta: #c69c7b;;;
|
--primary-cta: #106EFB;;;
|
||||||
--primary-cta-text: #ffffff;;;
|
--primary-cta-text: #ffffff;;;
|
||||||
--secondary-cta: #fdfcfb;;;
|
--secondary-cta: #f9f9f9;;;
|
||||||
--secondary-cta-text: #120a00e6;;;
|
--secondary-cta-text: #000612e6;;;
|
||||||
--accent: #e8dfd5;;;
|
--accent: #e2e2e2;;;
|
||||||
--background-accent: #d4c4b0;;;
|
--background-accent: #106EFB;;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user