Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-04-15 14:30:39 +00:00
2 changed files with 25 additions and 105 deletions

View File

@@ -8,7 +8,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import { Facebook, Instagram, Twitter } from "lucide-react";
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -26,26 +26,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Projects",
id: "/projects",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Projects", id: "/projects" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sbo Roofing"
/>
@@ -60,19 +45,10 @@ export default function LandingPage() {
description="Dedicated individuals building excellence."
groups={[
{
id: "t1",
groupTitle: "Leadership",
members: [
id: "t1", groupTitle: "Leadership", members: [
{
id: "m2",
title: "Jane Smith",
subtitle: "Director",
detail: "Founder and lead engineer",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-architect-looking-camera_23-2148242889.jpg?_wi=2",
},
id: "m2", title: "Jane Smith", subtitle: "Director", detail: "Founder and lead engineer", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-architect-looking-camera_23-2148242889.jpg"},
],
imageSrc: "http://img.b2bpic.net/free-photo/view-modern-construction-site_23-2151317233.jpg?_wi=2",
imageAlt: "Front view smiley architect looking at the camera ",
},
]}
/>
@@ -81,9 +57,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Visit Us"
title="Our Offices"
description="Find us at Nsawo stage, Kampala."
@@ -97,21 +71,9 @@ export default function LandingPage() {
logoText="Sbo Roofing Contractors Ltd"
copyrightText="© 2025 Sbo Roofing Contractors. All rights reserved."
socialLinks={[
{
icon: Facebook,
href: "#",
ariaLabel: "Facebook",
},
{
icon: Instagram,
href: "#",
ariaLabel: "Instagram",
},
{
icon: Twitter,
href: "#",
ariaLabel: "Twitter",
},
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
]}
/>
</div>

View File

@@ -8,7 +8,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import { Facebook, Instagram, Twitter } from "lucide-react";
export default function LandingPage() {
export default function ProjectsPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -26,26 +26,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Projects",
id: "/projects",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Projects", id: "/projects" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sbo Roofing"
/>
@@ -60,19 +45,10 @@ export default function LandingPage() {
description="The professionals behind every success story."
groups={[
{
id: "g1",
groupTitle: "Project Managers",
members: [
id: "g1", groupTitle: "Project Managers", members: [
{
id: "m1",
title: "John Doe",
subtitle: "Lead Supervisor",
detail: "10 years of experience",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-engineers-work-hours-job-site_23-2151589584.jpg",
},
id: "m1", title: "John Doe", subtitle: "Lead Supervisor", detail: "10 years of experience", imageSrc: "http://img.b2bpic.net/free-photo/portrait-engineers-work-hours-job-site_23-2151589584.jpg"},
],
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-architect-looking-camera_23-2148242889.jpg?_wi=1",
imageAlt: "Front view smiley architect looking at the camera ",
},
]}
/>
@@ -88,14 +64,8 @@ export default function LandingPage() {
description="A glimpse of our recent completed works."
products={[
{
id: "pj1",
brand: "Sbo",
name: "Nsawo Residential",
price: "Completed",
rating: 5,
reviewCount: "50+",
imageSrc: "http://img.b2bpic.net/free-photo/cute-yellow-rural-house-with-wooden-stairs-countryside_176420-7157.jpg",
},
id: "pj1", brand: "Sbo", name: "Nsawo Residential", price: "Completed", rating: 5,
reviewCount: "50+", imageSrc: "http://img.b2bpic.net/free-photo/cute-yellow-rural-house-with-wooden-stairs-countryside_176420-7157.jpg"},
]}
/>
</div>
@@ -105,21 +75,9 @@ export default function LandingPage() {
logoText="Sbo Roofing Contractors Ltd"
copyrightText="© 2025 Sbo Roofing Contractors. All rights reserved."
socialLinks={[
{
icon: Facebook,
href: "#",
ariaLabel: "Facebook",
},
{
icon: Instagram,
href: "#",
ariaLabel: "Instagram",
},
{
icon: Twitter,
href: "#",
ariaLabel: "Twitter",
},
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
]}
/>
</div>