13 Commits

Author SHA1 Message Date
6a9f930fc0 Merge version_5 into main
Merge version_5 into main
2026-04-01 05:40:39 +00:00
6d8e096c38 Update src/app/page.tsx 2026-04-01 05:40:37 +00:00
1f240d4316 Merge version_5 into main
Merge version_5 into main
2026-04-01 05:40:07 +00:00
e39283033a Update src/app/page.tsx 2026-04-01 05:40:04 +00:00
be02eb3373 Merge version_4 into main
Merge version_4 into main
2026-04-01 05:15:57 +00:00
6ae6b638d8 Update src/app/page.tsx 2026-04-01 05:15:54 +00:00
9e1f941a6d Merge version_4 into main
Merge version_4 into main
2026-04-01 05:15:26 +00:00
53351425f6 Update src/app/page.tsx 2026-04-01 05:15:23 +00:00
493fd062d1 Merge version_3 into main
Merge version_3 into main
2026-04-01 05:13:07 +00:00
efdb5272aa Update src/app/page.tsx 2026-04-01 05:13:04 +00:00
7e829f2579 Merge version_2 into main
Merge version_2 into main
2026-04-01 05:12:05 +00:00
82c6fc7417 Merge version_2 into main
Merge version_2 into main
2026-04-01 05:11:38 +00:00
c54d717352 Merge version_2 into main
Merge version_2 into main
2026-04-01 05:11:09 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
@@ -41,7 +41,7 @@ export default function LandingPage() {
</div> </div>
<div id="home" data-section="home"> <div id="home" data-section="home">
<HeroOverlay <HeroSplitKpi
title="Crafting Visual Experiences That Drive Results" title="Crafting Visual Experiences That Drive Results"
description="Im Nijaran — a Graphic Designer specializing in branding, social media creatives, packaging design, and UI visuals." description="Im Nijaran — a Graphic Designer specializing in branding, social media creatives, packaging design, and UI visuals."
tag="Hello There!" tag="Hello There!"
@@ -49,7 +49,14 @@ export default function LandingPage() {
{ text: "View Portfolio", href: "#portfolio" }, { text: "View Portfolio", href: "#portfolio" },
{ text: "Hire Me", href: "#contact" }, { text: "Hire Me", href: "#contact" },
]} ]}
kpis={[
{ value: "50+", label: "Projects Completed" },
{ value: "100%", label: "Client Satisfaction" },
{ value: "4+", label: "Years Experience" }
]}
enableKpiAnimation={true}
imageSrc="http://img.b2bpic.net/free-photo/man-portrait-with-blue-lights-visual-effects_23-2149419462.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/man-portrait-with-blue-lights-visual-effects_23-2149419462.jpg?_wi=1"
background={{ variant: "sparkles-gradient" }}
/> />
</div> </div>
@@ -130,21 +137,23 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactCTA
useInvertedBackground={false} tag="Contact"
background={{ variant: "canvas-reveal" }} title="Ready to get started?"
text="Ready to bring your brand to life? Let's discuss your project today and create something extraordinary." description="Bring your brand to life today with professional, results-oriented design."
buttons={[{ text: "Contact Me", href: "mailto:thenijaranofficalinfo@gmail.com" }]} buttons={[{ text: "Contact Me", href: "mailto:thenijaranofficalinfo@gmail.com" }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterLogoEmphasis
logoText="Nijaran Designs"
columns={[ columns={[
{ title: "Links", items: [{ label: "Home", href: "#home" }, { label: "Portfolio", href: "#portfolio" }, { label: "Contact", href: "#contact" }] }, { items: [{ label: "Home", href: "#home" }, { label: "Portfolio", href: "#portfolio" }, { label: "Contact", href: "#contact" }] },
{ title: "Services", items: [{ label: "Branding", href: "#services" }, { label: "UI/UX", href: "#services" }, { label: "Video", href: "#services" }] }, { items: [{ label: "Branding", href: "#services" }, { label: "UI/UX", href: "#services" }, { label: "Video", href: "#services" }] },
]} ]}
copyrightText="© 2026 Nijaran Designs. All Rights Reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>