7 Commits

Author SHA1 Message Date
fc5bec88dc Update src/app/styles/variables.css 2026-06-12 21:28:29 +00:00
70081d9d72 Update src/app/page.tsx 2026-06-12 21:28:28 +00:00
2363069f40 Merge version_2 into main
Merge version_2 into main
2026-06-12 21:26:04 +00:00
e0f045b705 Update src/app/styles/variables.css 2026-06-12 21:26:01 +00:00
be35bc175a Update src/app/styles/base.css 2026-06-12 21:26:00 +00:00
55de71d005 Update src/app/page.tsx 2026-06-12 21:26:00 +00:00
bf3b715e28 Merge version_1 into main
Merge version_1 into main
2026-06-12 21:23:09 +00:00
3 changed files with 33 additions and 26 deletions

View File

@@ -2,9 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
@@ -12,6 +10,8 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
import { Eye, Award, Diamond, Zap } from 'lucide-react'; import { Eye, Award, Diamond, Zap } from 'lucide-react';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -50,7 +50,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="home" data-section="home"> <div id="home" data-section="home" className="py-16 lg:py-24">
<HeroLogoBillboard <HeroLogoBillboard
background={{ background={{
variant: "downward-rays-animated-grid"}} variant: "downward-rays-animated-grid"}}
@@ -66,7 +66,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about" className="py-16 lg:py-24">
<TextAbout <TextAbout
useInvertedBackground={true} useInvertedBackground={true}
tag="Our Story" tag="Our Story"
@@ -74,7 +74,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features" className="py-16 lg:py-24">
<FeatureCardTwentySix <FeatureCardTwentySix
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
@@ -97,7 +97,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="collection" data-section="collection"> <div id="collection" data-section="collection" className="py-16 lg:py-24">
<ProductCardOne <ProductCardOne
animationType="scale-rotate" animationType="scale-rotate"
textboxLayout="default" textboxLayout="default"
@@ -122,7 +122,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials" className="py-16 lg:py-24">
<TestimonialCardOne <TestimonialCardOne
animationType="scale-rotate" animationType="scale-rotate"
textboxLayout="default" textboxLayout="default"
@@ -150,19 +150,23 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="social-proof" data-section="social-proof"> <div id="social-proof" data-section="social-proof" className="py-16 lg:py-24">
<SocialProofOne <SocialProofOne
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
names={[ names={[
"Vogue", "Elle", "Harper's Bazaar", "GQ", "WWD", "Hypebeast", "Highsnobiety"]} "Vogue", "Elle", "Harper's Bazaar", "GQ", "WWD", "Hypebeast", "Highsnobiety"]}
title="As Seen In" title="Trusted by Industry Leaders"
description="KEHRI is recognized by leading voices in fashion and digital innovation." description="Our dedication to innovation and quality has earned recognition from top fashion and digital publications."
buttons={[
{
text: "Learn More", href: "#about"}
]}
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact" className="py-16 lg:py-24">
<ContactCenter <ContactSplit
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "radial-gradient"}} variant: "radial-gradient"}}
@@ -172,12 +176,14 @@ export default function LandingPage() {
inputPlaceholder="Enter your email" inputPlaceholder="Enter your email"
buttonText="Subscribe" buttonText="Subscribe"
termsText="By subscribing you're confirming that you agree with our Terms and Conditions." termsText="By subscribing you're confirming that you agree with our Terms and Conditions."
imageSrc="http://img.b2bpic.net/free-photo/side-view-young-beautiful-woman-working-with-laptop_23-2148425219.jpg"
imageAlt="Woman working with laptop"
mediaPosition="right"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer" className="py-16 lg:py-24">
<FooterBaseCard <FooterSimple
logoText="KEHRI"
columns={[ columns={[
{ {
title: "Company", items: [ title: "Company", items: [
@@ -210,10 +216,11 @@ export default function LandingPage() {
], ],
}, },
]} ]}
copyrightText="© 2024 KEHRI. All rights reserved." bottomLeftText="© 2024 KEHRI. All rights reserved."
bottomRightText="Privacy Policy"
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -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-manrope), 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-manrope), sans-serif; font-family: var(--font-dm-sans), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #0a0a0a; --background: #020617;
--card: #1a1a1a; --card: #0f172a;
--foreground: #f5f5f5; --foreground: #e2e8f0;
--primary-cta: #ffdf7d; --primary-cta: #c4d8f9;
--primary-cta-text: #0a0a0a; --primary-cta-text: #0a0a0a;
--secondary-cta: #1a1a1a; --secondary-cta: #041633;
--secondary-cta-text: #ffffff; --secondary-cta-text: #ffffff;
--accent: #b8860b; --accent: #2d30f3;
--background-accent: #8b6914; --background-accent: #1d4ed8;
/* 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);