Merge version_7 into main #16

Merged
bender merged 6 commits from version_7 into main 2026-03-03 10:13:29 +00:00
6 changed files with 12 additions and 41 deletions

View File

@@ -145,4 +145,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -83,4 +83,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,42 +1,17 @@
import type { Metadata } from "next";
import { Archivo } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Pulse Digital | Web Design & Development Agency", description: "Professional web design and development services. We create beautiful, high-performing websites that drive business results. Trusted by 150+ companies.", keywords: "web design, web development, digital agency, website design, web development company", metadataBase: new URL("https://pulsedigital.com"),
alternates: {
canonical: "https://pulsedigital.com"
},
openGraph: {
title: "Pulse Digital | Web Design & Development Agency", description: "Transform your digital presence with stunning websites and strategic design solutions.", siteName: "Pulse Digital", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/a-modern-sleek-web-design-dashboard-inte-1772527372132-0a49fa86.png", alt: "Pulse Digital - Web Design Agency"
}
],
},
twitter: {
card: "summary_large_image", title: "Pulse Digital | Web Design & Development", description: "Professional web design and development services for modern businesses.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/a-modern-sleek-web-design-dashboard-inte-1772527372132-0a49fa86.png"],
},
};
title: "Pulse Digital | Creative Web Solutions", description: "We craft beautiful, high-performing websites that convert visitors into customers."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1404,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -4,14 +4,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import HeroSplit from "@/components/sections/hero/HeroSplit";
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase";
import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
import Link from "next/link";
import { Zap, Heart, Rocket, Lightbulb, Star, TrendingUp, Workflow, MessageCircle, Linkedin, Twitter } from "lucide-react";
import { Zap, Heart, Rocket, TrendingUp, Linkedin, Twitter } from "lucide-react";
export default function HomePage() {
const navItems = [
@@ -61,7 +59,6 @@ export default function HomePage() {
mediaAnimation="slide-up"
buttons={[
{ text: "Start Your Project", href: "/contact" },
{ text: "View Our Work", href: "/portfolio" },
]}
buttonAnimation="slide-up"
/>
@@ -170,4 +167,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -154,4 +154,4 @@ export default function PortfolioPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -128,4 +128,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}