Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f073845021 | |||
| a72a2af0de | |||
| a0cd6a31d9 |
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #f8faff;;
|
||||
--card: #f0f4ff;;
|
||||
--foreground: #1a1a2e;;
|
||||
--primary-cta: #3b82f6;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #d5c6ff;;
|
||||
--background-accent: #b394fa;;
|
||||
--background: #ffffff;
|
||||
--card: #fcfcfc;
|
||||
--foreground: #00120ae6;
|
||||
--primary-cta: #15ad59;
|
||||
--secondary-cta: #ffffff;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
@@ -495,7 +495,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -508,5 +508,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
@@ -9,7 +9,7 @@ import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterSplit from '@/components/sections/footer/FooterSplit';
|
||||
import { Heart, Leaf, Mail, MapPin, Phone, Sprout, Star } from 'lucide-react';
|
||||
import { Heart, Leaf, Mail, MapPin, Phone, Sprout, Star, Linkedin } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -270,7 +270,8 @@ export default function LandingPage() {
|
||||
contactItems={[
|
||||
{ icon: Phone, text: "(555) 123-4567" },
|
||||
{ icon: Mail, text: "hello@nokinoa.com" },
|
||||
{ icon: MapPin, text: "Premium Tea Headquarters" }
|
||||
{ icon: MapPin, text: "Premium Tea Headquarters" },
|
||||
{ icon: Linkedin, text: "LinkedIn Company" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user