Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-05-08 10:56:55 +00:00
4 changed files with 102 additions and 13 deletions

46
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,46 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FooterBase from "@/components/sections/footer/FooterBase";
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
import { Rocket } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="SiteCraft"
navItems={[
{ name: "About", id: "/about" },
{ name: "Work", id: "/work" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Quote", href: "/contact" }}
/>
<div className="pt-32 pb-20">
<TestimonialAboutCard
tag="Our Mission"
title="Engineering Success"
description="We believe that great technology is invisible. Our team focuses on building tools that empower businesses to scale seamlessly."
subdescription="Founded in 2020, we have grown from a small group of enthusiasts to a global partner for high-growth enterprises."
icon={Rocket}
imageSrc="http://img.b2bpic.net/free-photo/elegant-cozy-office-lifestyle_23-2149636247.jpg"
/>
</div>
<FooterBase
logoText="SiteCraft"
copyrightText="© 2026 | SiteCraft Solutions"
columns={[
{ title: "Agency", items: [{ label: "Our Approach", href: "/about" }, { label: "Portfolio", href: "/work" }] },
{ title: "Solutions", items: [{ label: "Full-stack Dev", href: "#" }, { label: "Cloud Infra", href: "#" }, { label: "SEO Audit", href: "#" }] },
{ title: "Office", items: [{ label: "San Francisco", href: "#" }, { label: "London", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}

43
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,43 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBase from "@/components/sections/footer/FooterBase";
export default function ContactPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="SiteCraft"
navItems={[
{ name: "About", id: "/about" },
{ name: "Work", id: "/work" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Quote", href: "/contact" }}
/>
<div className="py-32">
<ContactCenter
tag="Contact Us"
title="Let's Build Something Great"
description="Send us a message and we'll be in touch within 24 hours to discuss your digital transformation."
background={{ variant: "rotated-rays-animated" }}
/>
</div>
<FooterBase
logoText="SiteCraft"
copyrightText="© 2026 | SiteCraft Solutions"
columns={[
{ title: "Agency", items: [{ label: "Our Approach", href: "/about" }, { label: "Portfolio", href: "/work" }] },
{ title: "Solutions", items: [{ label: "Full-stack Dev", href: "#" }, { label: "Cloud Infra", href: "#" }, { label: "SEO Audit", href: "#" }] },
{ title: "Office", items: [{ label: "San Francisco", href: "#" }, { label: "London", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -33,12 +33,12 @@ export default function WebAgency2Page() {
<NavbarLayoutFloatingOverlay
brandName="SiteCraft"
navItems={[
{ name: "About", id: "/about" },
{ name: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "Approach", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Quote", href: "#contact" }}
button={{ text: "Get Quote", href: "/contact" }}
/>
<HeroSplitDoubleCarousel
title="We Engineer High-Growth Digital Assets"
@@ -48,7 +48,7 @@ export default function WebAgency2Page() {
tagAnimation="slide-up"
background={{ variant: "canvas-reveal" }}
buttons={[
{ text: "Start Building", href: "#contact" },
{ text: "Start Building", href: "/contact" },
{ text: "Our Portfolio", href: "#work" },
]}
buttonAnimation="slide-up"
@@ -149,7 +149,7 @@ export default function WebAgency2Page() {
title="Architect Your Next Digital Venture"
description="Engineering talent, design expertise, and strategy in one place. Let's discuss your project specs."
background={{ variant: "rotated-rays-animated" }}
buttons={[{ text: "Book a Technical Consultation", href: "#contact" }]}
buttons={[{ text: "Book a Technical Consultation", href: "/contact" }]}
buttonAnimation="slide-up"
useInvertedBackground={false}
/>
@@ -157,7 +157,7 @@ export default function WebAgency2Page() {
logoText="SiteCraft"
copyrightText="© 2026 | SiteCraft Solutions"
columns={[
{ title: "Agency", items: [{ label: "Our Approach", href: "#about" }, { label: "Portfolio", href: "#work" }] },
{ title: "Agency", items: [{ label: "Our Approach", href: "/about" }, { label: "Portfolio", href: "#work" }] },
{ title: "Solutions", items: [{ label: "Full-stack Dev", href: "#" }, { label: "Cloud Infra", href: "#" }, { label: "SEO Audit", href: "#" }] },
{ title: "Office", items: [{ label: "San Francisco", href: "#" }, { label: "London", href: "#" }] },
]}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #0a0a0a;
--card: #161616;
--foreground: #f0f0f0;
--primary-cta: #ffffff;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #0a0a0a;
--secondary-cta: #1e1e1e;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #e0e0e0;
--accent: #d0d0d0;
--background-accent: #9a9a9a;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);