diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c5930af..416b014 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,56 +1,24 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Roboto } from "next/font/google";
+import { DM_Sans } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "./styles/variables.css";
+import "./styles/base.css";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const roboto = Roboto({
- variable: "--font-roboto", subsets: ["latin"],
- weight: ["100", "300", "400", "500", "700", "900"],
+const dmSans = DM_Sans({
+ variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "PrimeSignal - Premium Website Design for Local Businesses", description: "High-converting website design for local businesses. Transform your online presence and generate more leads with our premium web design services.", keywords: "web design, local business website, website design agency, high-converting websites, digital agency, website redesign", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "PrimeSignal - Premium Website Design", description: "Premium websites that convert. We design beautiful, high-performing websites for local businesses ready to dominate online.", type: "website", siteName: "PrimeSignal", images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png", alt: "PrimeSignal Premium Website Design"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "PrimeSignal - Premium Website Design", description: "High-converting websites for local businesses. Transform your online presence today.", images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png"],
- },
-};
+ title: "PrimeSignal - Premium Websites for Local Businesses", description: "High-converting websites designed for local businesses to attract customers and drive growth."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/meet-the-team/page.tsx b/src/app/meet-the-team/page.tsx
new file mode 100644
index 0000000..178f7ca
--- /dev/null
+++ b/src/app/meet-the-team/page.tsx
@@ -0,0 +1,100 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import TeamCardOne from '@/components/sections/team/TeamCardOne';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
+import FooterCard from '@/components/sections/footer/FooterCard';
+import { Linkedin, MessageSquare, Rocket, Twitter, Instagram } from 'lucide-react';
+
+export default function MeetTheTeamPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 5d635ae..282d674 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -33,6 +33,7 @@ export default function PrimeSignalPage() {
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "Why Us", id: "why-primesignal" },
+ { name: "Team", id: "/meet-the-team" },
{ name: "Contact", id: "contact" },
]}
/>