Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f60ba2af8b | |||
| 9242e3edbe | |||
| d46081f3fd | |||
| 18033d12a0 | |||
| f5db88d61b | |||
| d93a6e7e27 | |||
| 1a2e940fac | |||
| 4ac54dd2a5 | |||
| a2b8aa82a0 | |||
| d7766754ff | |||
| c6c43b48e6 | |||
| 3b0d78edb3 |
@@ -10,25 +10,25 @@ import { Award, TrendingUp, Users, Globe, Clock } from "lucide-react";
|
|||||||
|
|
||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "/features" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "/contact" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSmall"
|
sizing="mediumLarge"
|
||||||
background="circleGradient"
|
background="none"
|
||||||
cardStyle="outline"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
@@ -85,18 +85,18 @@ export default function AboutPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product", items: [
|
title: "Product", items: [
|
||||||
{ label: "Features", href: "#features" },
|
{ label: "Features", href: "/features" },
|
||||||
{ label: "Pricing", href: "#pricing" },
|
{ label: "Pricing", href: "/pricing" },
|
||||||
{ label: "Security", href: "#" },
|
{ label: "Security", href: "#" },
|
||||||
{ label: "Roadmap", href: "#" }
|
{ label: "Roadmap", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Blog", href: "#" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "#" },
|
||||||
{ label: "Contact", href: "#contact" }
|
{ label: "Contact", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -111,4 +111,4 @@ export default function AboutPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,32 +3,32 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import ContactText from "@/components/sections/contact/ContactText";
|
import ContactText from "@/components/sections/contact/ContactText";
|
||||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { HelpCircle } from "lucide-react";
|
import { HelpCircle } from "lucide-react";
|
||||||
|
|
||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "/features" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "/contact" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSmall"
|
sizing="mediumLarge"
|
||||||
background="circleGradient"
|
background="none"
|
||||||
cardStyle="outline"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
@@ -54,17 +54,13 @@ export default function ContactPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqSplitMedia
|
<FaqDouble
|
||||||
tag="Help"
|
tag="Help"
|
||||||
tagIcon={HelpCircle}
|
tagIcon={HelpCircle}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Find answers to common questions about Guesto's features and pricing."
|
description="Find answers to common questions about Guesto's features and pricing."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="http://img.b2bpic.net/free-vector/faq-concept_23-2148147003.jpg"
|
|
||||||
imageAlt="FAQ Support"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
mediaPosition="left"
|
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
@@ -98,18 +94,18 @@ export default function ContactPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product", items: [
|
title: "Product", items: [
|
||||||
{ label: "Features", href: "#features" },
|
{ label: "Features", href: "/features" },
|
||||||
{ label: "Pricing", href: "#pricing" },
|
{ label: "Pricing", href: "/pricing" },
|
||||||
{ label: "Security", href: "#" },
|
{ label: "Security", href: "#" },
|
||||||
{ label: "Roadmap", href: "#" }
|
{ label: "Roadmap", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Blog", href: "#" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "#" },
|
||||||
{ label: "Contact", href: "#contact" }
|
{ label: "Contact", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -124,4 +120,4 @@ export default function ContactPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,25 +10,25 @@ import { Zap, Award } from "lucide-react";
|
|||||||
|
|
||||||
export default function FeaturesPage() {
|
export default function FeaturesPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "/features" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "/contact" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSmall"
|
sizing="mediumLarge"
|
||||||
background="circleGradient"
|
background="none"
|
||||||
cardStyle="outline"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
@@ -96,18 +96,18 @@ export default function FeaturesPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product", items: [
|
title: "Product", items: [
|
||||||
{ label: "Features", href: "#features" },
|
{ label: "Features", href: "/features" },
|
||||||
{ label: "Pricing", href: "#pricing" },
|
{ label: "Pricing", href: "/pricing" },
|
||||||
{ label: "Security", href: "#" },
|
{ label: "Security", href: "#" },
|
||||||
{ label: "Roadmap", href: "#" }
|
{ label: "Roadmap", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Blog", href: "#" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "#" },
|
||||||
{ label: "Contact", href: "#contact" }
|
{ label: "Contact", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -122,4 +122,4 @@ export default function FeaturesPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Nunito_Sans } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const nunitoSans = Nunito_Sans({
|
const inter = Inter({
|
||||||
variable: "--font-nunito-sans", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -33,7 +33,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${nunitoSans.variable} antialiased`}>
|
<body className={`${inter.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
@@ -1407,4 +1407,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,25 +13,25 @@ import { Sparkles, Zap, Award, TrendingUp, MessageSquare, Users, Globe, Clock, H
|
|||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "/features" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "/contact" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSmall"
|
sizing="mediumLarge"
|
||||||
background="circleGradient"
|
background="none"
|
||||||
cardStyle="outline"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
@@ -178,18 +178,18 @@ export default function HomePage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product", items: [
|
title: "Product", items: [
|
||||||
{ label: "Features", href: "#features" },
|
{ label: "Features", href: "/features" },
|
||||||
{ label: "Pricing", href: "#pricing" },
|
{ label: "Pricing", href: "/pricing" },
|
||||||
{ label: "Security", href: "#" },
|
{ label: "Security", href: "#" },
|
||||||
{ label: "Roadmap", href: "#" }
|
{ label: "Roadmap", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Blog", href: "#" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "#" },
|
||||||
{ label: "Contact", href: "#contact" }
|
{ label: "Contact", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -204,4 +204,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,32 +2,32 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
|
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { CreditCard, Zap, Star, Crown } from "lucide-react";
|
import { CreditCard, Zap, Star, Crown } from "lucide-react";
|
||||||
|
|
||||||
export default function PricingPage() {
|
export default function PricingPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "/features" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "/contact" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSmall"
|
sizing="mediumLarge"
|
||||||
background="circleGradient"
|
background="none"
|
||||||
cardStyle="outline"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
@@ -40,7 +40,7 @@ export default function PricingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="pricing" data-section="pricing">
|
<div id="pricing" data-section="pricing">
|
||||||
<PricingCardTwo
|
<PricingCardThree
|
||||||
tag="Pricing"
|
tag="Pricing"
|
||||||
tagIcon={CreditCard}
|
tagIcon={CreditCard}
|
||||||
title="Simple, Transparent Pricing"
|
title="Simple, Transparent Pricing"
|
||||||
@@ -51,7 +51,7 @@ export default function PricingPage() {
|
|||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "starter", badge: "Starter", badgeIcon: Zap,
|
id: "starter", badge: "Starter", badgeIcon: Zap,
|
||||||
price: "₹999/month", subtitle: "Perfect for solo agents", buttons: [
|
price: "₹999/month", name: "Perfect for solo agents", buttons: [
|
||||||
{ text: "Get Started", href: "https://app.guesto.com/signup" }
|
{ text: "Get Started", href: "https://app.guesto.com/signup" }
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
@@ -60,7 +60,7 @@ export default function PricingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "professional", badge: "Professional", badgeIcon: Star,
|
id: "professional", badge: "Professional", badgeIcon: Star,
|
||||||
price: "₹2,499/month", subtitle: "For growing agencies", buttons: [
|
price: "₹2,499/month", name: "For growing agencies", buttons: [
|
||||||
{ text: "Start Free Trial", href: "https://app.guesto.com/signup" }
|
{ text: "Start Free Trial", href: "https://app.guesto.com/signup" }
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
@@ -69,8 +69,8 @@ export default function PricingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "enterprise", badge: "Enterprise", badgeIcon: Crown,
|
id: "enterprise", badge: "Enterprise", badgeIcon: Crown,
|
||||||
price: "Custom", subtitle: "For large teams", buttons: [
|
price: "Custom", name: "For large teams", buttons: [
|
||||||
{ text: "Contact Sales", href: "#contact" }
|
{ text: "Contact Sales", href: "/contact" }
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"Everything in Professional", "Dedicated account manager", "Custom integrations", "White-label solution", "Advanced security", "SLA guarantee", "Training & onboarding"
|
"Everything in Professional", "Dedicated account manager", "Custom integrations", "White-label solution", "Advanced security", "SLA guarantee", "Training & onboarding"
|
||||||
@@ -89,18 +89,18 @@ export default function PricingPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product", items: [
|
title: "Product", items: [
|
||||||
{ label: "Features", href: "#features" },
|
{ label: "Features", href: "/features" },
|
||||||
{ label: "Pricing", href: "#pricing" },
|
{ label: "Pricing", href: "/pricing" },
|
||||||
{ label: "Security", href: "#" },
|
{ label: "Security", href: "#" },
|
||||||
{ label: "Roadmap", href: "#" }
|
{ label: "Roadmap", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Blog", href: "#" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "#" },
|
||||||
{ label: "Contact", href: "#contact" }
|
{ label: "Contact", href: "/contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -115,4 +115,4 @@ export default function PricingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-nunito-sans), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-nunito-sans), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #ffffff;;
|
/* --background: #F4F6F9;;
|
||||||
--card: #f9f9f9;;
|
--card: #FFFFFF;;
|
||||||
--foreground: #000612e6;;
|
--foreground: #1A1A1A;;
|
||||||
--primary-cta: #15479c;;
|
--primary-cta: #C62828;;
|
||||||
--secondary-cta: #f9f9f9;;
|
--secondary-cta: #1E1E2F;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #C62828;;
|
||||||
--background-accent: #c4c4c4;; */
|
--background-accent: #E8E8E8;; */
|
||||||
|
|
||||||
--background: #ffffff;;
|
--background: #F4F6F9;;
|
||||||
--card: #f9f9f9;;
|
--card: #FFFFFF;;
|
||||||
--foreground: #000612e6;;
|
--foreground: #1A1A1A;;
|
||||||
--primary-cta: #15479c;;
|
--primary-cta: #C62828;;
|
||||||
--primary-cta-text: #ffffff;;
|
--primary-cta-text: #ffffff;;
|
||||||
--secondary-cta: #f9f9f9;;
|
--secondary-cta: #1E1E2F;;
|
||||||
--secondary-cta-text: #000612e6;;
|
--secondary-cta-text: #000612e6;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #C62828;;
|
||||||
--background-accent: #c4c4c4;;
|
--background-accent: #E8E8E8;;
|
||||||
|
|
||||||
/* 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