diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..90236e9
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,47 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import SplitAbout from "@/components/sections/about/SplitAbout";
+import FooterBase from "@/components/sections/footer/FooterBase";
+import ReactLenis from "lenis/react";
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0165d48..f3b9520 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -33,10 +33,10 @@ export default function WebAgency2Page() {
@@ -78,28 +78,18 @@ export default function WebAgency2Page() {
buttonAnimation="slide-up"
features={[
{
- title: "SEO",
- description: "We optimize your website to rank higher on search engines and drive organic traffic.",
- bentoComponent: "marquee",
- centerIcon: Search,
- variant: "text",
- texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"],
+ title: "SEO", description: "We optimize your website to rank higher on search engines and drive organic traffic.", bentoComponent: "marquee", centerIcon: Search,
+ variant: "text", texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"],
},
{
- title: "Web Development",
- description: "Custom-built websites that are fast, responsive, and designed to convert.",
- bentoComponent: "media-stack",
- items: [
+ title: "Web Development", description: "Custom-built websites that are fast, responsive, and designed to convert.", bentoComponent: "media-stack", items: [
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Web project - AgentFlow AI platform" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Web project - Architecture studio" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", imageAlt: "Web project - Summit Roofing" },
],
},
{
- title: "Branding",
- description: "Build a memorable brand identity that resonates with your audience.",
- bentoComponent: "media-stack",
- items: [
+ title: "Branding", description: "Build a memorable brand identity that resonates with your audience.", bentoComponent: "media-stack", items: [
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Brand project 1" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Brand project 2" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" },
@@ -107,197 +97,6 @@ export default function WebAgency2Page() {
},
]}
/>
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx
new file mode 100644
index 0000000..0e3489d
--- /dev/null
+++ b/src/app/team/page.tsx
@@ -0,0 +1,90 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
+import FooterBase from "@/components/sections/footer/FooterBase";
+import { Twitter, Linkedin, Instagram } from "lucide-react";
+
+export default function TeamPage() {
+ return (
+
+
+
+
+
+
+
+ );
+}