diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..f2aaf69 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,30 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/events/page.tsx b/src/app/events/page.tsx new file mode 100644 index 0000000..5ac747f --- /dev/null +++ b/src/app/events/page.tsx @@ -0,0 +1,32 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function EventsPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index b255edc..8de8630 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,18 +30,10 @@ export default function LandingPage() { @@ -134,27 +70,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - tag: "Development", - title: "Real Estate", - subtitle: "Prime Development", - description: "High-quality residential and commercial developments designed for long-term value.", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-blank-clipboard-keyboard-blueprint_23-2148183049.jpg", - }, - { - tag: "Hospitality", - title: "Cloud Kitchens", - subtitle: "Ghost Kitchen Units", - description: "State-of-the-art infrastructure for efficient delivery-only restaurant operations.", - imageSrc: "http://img.b2bpic.net/free-photo/chef-with-tablet_23-2148145531.jpg", - }, - { - tag: "Technology", - title: "IT Solutions", - subtitle: "Integrated Intelligence", - description: "Innovative software and engineering think tank for smarter living spaces.", - imageSrc: "http://img.b2bpic.net/free-photo/3d-modern-background-with-design-extruding-cubes_1048-12334.jpg", - }, + { tag: "Development", title: "Real Estate", subtitle: "Prime Development", description: "High-quality residential and commercial developments designed for long-term value.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-blank-clipboard-keyboard-blueprint_23-2148183049.jpg" }, + { tag: "Hospitality", title: "Cloud Kitchens", subtitle: "Ghost Kitchen Units", description: "State-of-the-art infrastructure for efficient delivery-only restaurant operations.", imageSrc: "http://img.b2bpic.net/free-photo/chef-with-tablet_23-2148145531.jpg" }, + { tag: "Technology", title: "IT Solutions", subtitle: "Integrated Intelligence", description: "Innovative software and engineering think tank for smarter living spaces.", imageSrc: "http://img.b2bpic.net/free-photo/3d-modern-background-with-design-extruding-cubes_1048-12334.jpg" }, ]} title="Our Domains of Excellence" description="Sankpal Global operates at the intersection of critical infrastructure and modern technology." @@ -167,21 +85,9 @@ export default function LandingPage() { title="Impact by Numbers" tag="Our Growth" metrics={[ - { - id: "m1", - value: "100%", - description: "Design Accuracy", - }, - { - id: "m2", - value: "24/7", - description: "Cloud Operation Support", - }, - { - id: "m3", - value: "50+", - description: "Engineered Solutions", - }, + { id: "m1", value: "100%", description: "Design Accuracy" }, + { id: "m2", value: "24/7", description: "Cloud Operation Support" }, + { id: "m3", value: "50+", description: "Engineered Solutions" }, ]} metricsAnimation="slide-up" /> @@ -191,31 +97,11 @@ export default function LandingPage() { @@ -244,9 +123,7 @@ export default function LandingPage() {
@@ -289,4 +144,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file diff --git a/src/app/projects/[id]/page.tsx b/src/app/projects/[id]/page.tsx new file mode 100644 index 0000000..7ea6168 --- /dev/null +++ b/src/app/projects/[id]/page.tsx @@ -0,0 +1,28 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function ProjectDetailsPage() { + return ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx new file mode 100644 index 0000000..c1b8e27 --- /dev/null +++ b/src/app/projects/page.tsx @@ -0,0 +1,33 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function ProjectsPage() { + return ( + + + + + + + + ); +} \ No newline at end of file