Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 22:41:09 +00:00
2 changed files with 23 additions and 64 deletions

View File

@@ -1,75 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const interTight = Inter_Tight({
variable: "--font-inter-tight",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Nexora Digital - Web Design & Digital Marketing Agency",
description: "Professional digital agency offering web development, UI/UX design, branding, and digital marketing solutions for startups and SMEs.",
keywords: "web design, digital agency, web development, branding, digital marketing, UI/UX design, Singapore",
metadataBase: new URL("https://nexoradigital.com"),
alternates: {
canonical: "https://nexoradigital.com",
},
openGraph: {
title: "Nexora Digital - Smart Digital Solutions",
description: "Transform your online presence with our comprehensive digital solutions. Web design, development, branding, and marketing services.",
url: "https://nexoradigital.com",
siteName: "Nexora Digital",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXs4GerfFDTw61kTzDRZEKyR0z/a-modern-website-design-mockup-showing-c-1772750212632-f809e8b5.png",
alt: "Nexora Digital - Digital Solutions",
},
],
},
twitter: {
card: "summary_large_image",
title: "Nexora Digital - Smart Digital Solutions",
description: "Professional digital agency for web design, development, and marketing.",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXs4GerfFDTw61kTzDRZEKyR0z/a-modern-website-design-mockup-showing-c-1772750212632-f809e8b5.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "Nexora Digital - Web Design & Digital Solutions", description: "Build, launch, and grow your digital presence with Nexora Digital. We design powerful websites and digital strategies that help businesses succeed."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1437,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -77,6 +77,21 @@ export default function HomePage() {
]}
buttonAnimation="slide-up"
carouselPosition="right"
avatars={[
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXs4GerfFDTw61kTzDRZEKyR0z/professional-headshot-of-a-confident-fem-1772750211166-0c7b7dee.png", alt: "Client logo 1"
},
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXs4GerfFDTw61kTzDRZEKyR0z/professional-headshot-of-a-male-entrepre-1772750211554-cfd93a63.png", alt: "Client logo 2"
},
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXs4GerfFDTw61kTzDRZEKyR0z/professional-headshot-of-a-female-busine-1772750210740-8961d347.png", alt: "Client logo 3"
},
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXs4GerfFDTw61kTzDRZEKyR0z/professional-headshot-of-a-male-marketin-1772750211213-5881f6b1.png", alt: "Client logo 4"
}
]}
avatarText="Trusted by 50+ companies"
/>
</div>
@@ -211,4 +226,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}