diff --git a/src/app/globals.css b/src/app/globals.css
index 2a39d50..8480e74 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
- --background: #fff5f8;;
- --card: #ffebf0;;
- --foreground: #3d2930;;
- --primary-cta: #e890a8;;
+ --background: #ffffff;;
+ --card: #fcfcfc;;
+ --foreground: #000000e6;;
+ --primary-cta: #1a1a1a;;
--secondary-cta: #ffffff;;
- --accent: #f5ccd5;;
- --background-accent: #f0b8c4;;
+ --accent: #bebebe;;
+ --background-accent: #c4c4c4;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7ee1839..531a2e0 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,11 +1,11 @@
import type { Metadata } from "next";
-import { Source_Sans_3 } from "next/font/google";
+import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
-const sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3",
+const inter = Inter({
+ variable: "--font-inter",
subsets: ["latin"],
});
@@ -50,7 +50,7 @@ export default function RootLayout({
{children}
@@ -1276,4 +1276,4 @@ export default function RootLayout({
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 53a0be8..7219d64 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,14 +1,14 @@
-"use client"
+"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
-import HeroBillboardCarouselSplit from '@/components/sections/hero/HeroBillboardCarouselSplit';
-import TextAbout from '@/components/sections/about/TextAbout';
-import ProductCardThree from '@/components/sections/product/ProductCardThree';
-import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
-import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
-import ContactText from '@/components/sections/contact/ContactText';
-import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import HeroSplit from '@/components/sections/hero/HeroSplit';
+import TagAbout from '@/components/sections/about/TagAbout';
+import ProductCardFive from '@/components/sections/product/ProductCardFive';
+import FeatureCardThirteen from '@/components/sections/feature/FeatureCardThirteen';
+import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
+import ContactInline from '@/components/sections/contact/ContactInline';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function LandingPage() {
return (
@@ -25,7 +25,7 @@ export default function LandingPage() {
headingFontWeight="bold"
>
-
-
-
-
-
-
);
-}
\ No newline at end of file
+}