Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 07:30:10 +00:00
2 changed files with 9 additions and 47 deletions

View File

@@ -1,56 +1,19 @@
import type { Metadata } from "next";
import { Lato } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Nexus Creative | Digital Design & Development Agency", description: "Transform your brand with award-winning digital design and development. We create exceptional experiences that drive results.", keywords: "web design, web development, creative agency, digital transformation, branding, UI/UX design", metadataBase: new URL("https://nexuscreative.com"),
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Nexus Creative | Digital Design & Development Agency", description: "Transform your brand with award-winning digital design and development services", type: "website", siteName: "Nexus Creative", url: "https://nexuscreative.com", images: [
{
url: "http://img.b2bpic.net/free-photo/group-business-executives-interacting-with-each-other_1170-760.jpg", alt: "Nexus Creative - Digital Design Agency"},
],
},
twitter: {
card: "summary_large_image", title: "Nexus Creative | Digital Design & Development Agency", description: "Award-winning digital design and development for transformative brands", images: ["http://img.b2bpic.net/free-photo/group-business-executives-interacting-with-each-other_1170-760.jpg"],
},
};
title: "Nexus Creative - Digital Excellence", description: "Transform your brand with exceptional digital experiences from Nexus Creative Studio."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${lato.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1381,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -223,7 +223,7 @@ export default function LandingPage() {
animationType="entrance-slide"
buttons={[
{ text: "Schedule Discovery Call", href: "#" },
{ text: "View Case Studies", href: "#features" }
{ text: "Start Your Project", href: "#features" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -244,4 +244,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}