Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c11b0c389e | |||
| 3a4a49fa05 | |||
| 955f9d1a9b | |||
| 1c9af4e575 | |||
| 71002c9805 | |||
| 24511f0b36 | |||
| 25604715a4 | |||
| 842ca1ce24 | |||
| 7ece1993fb | |||
| 67b9597506 | |||
| b1225a71ea | |||
| 04a818e205 | |||
| c26a4dccfe |
@@ -1,76 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Manrope } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
|
||||||
variable: "--font-manrope",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Zyber Zing Global - Technology Solutions & Software Development",
|
title: "Zyber Zing - Global Technology Solutions", description: "Custom software development, AI engineering, blockchain, web & mobile apps, and cloud infrastructure. Trusted by startups and enterprises worldwide."};
|
||||||
description: "Custom software development, AI engineering, blockchain, web & mobile apps, cloud infrastructure. Trusted technology partner for startups and enterprises worldwide.",
|
|
||||||
keywords: "software development, AI engineering, blockchain, web development, mobile apps, cloud infrastructure, technology solutions, custom software, AI/ML, SaaS development",
|
|
||||||
metadataBase: new URL("https://zyberzing.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://zyberzing.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Zyber Zing - Global Technology Solutions",
|
|
||||||
description: "Transform your vision into reality with Zyber Zing. Custom software, AI engineering, blockchain, and cloud solutions.",
|
|
||||||
url: "https://zyberzing.com",
|
|
||||||
siteName: "Zyber Zing",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZrYlFLhLjWPzd5ntCD5GOqvUv/a-modern-technology-hero-background-feat-1772811458631-d1b3869c.png",
|
|
||||||
alt: "Zyber Zing Technology Services",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Zyber Zing - Technology Solutions",
|
|
||||||
description: "Global technology partner for custom software, AI, blockchain, and cloud solutions.",
|
|
||||||
images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZrYlFLhLjWPzd5ntCD5GOqvUv/a-modern-technology-hero-background-feat-1772811458631-d1b3869c.png",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1438,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -13,7 +13,7 @@ import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
|||||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { Zap, Shield, Star, Code, Sparkles } from "lucide-react";
|
import { Zap, Shield, Star, Code, Sparkles, Globe, CheckCircle } from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
@@ -147,8 +147,8 @@ export default function HomePage() {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", value: "24/7", title: "Global Support", items: [
|
id: "4", value: "ISO Certified", title: "Global Compliance Standard", items: [
|
||||||
"Round-the-clock assistance", "Multiple time zones", "Dedicated teams"
|
"ISO 9001:2015 certified", "SOC 2 Type II compliant", "GDPR & security compliant"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
--background: #f7f6f7;
|
--background: #f7f6f7;
|
||||||
--card: #ffffff;
|
--card: #ffffff;
|
||||||
--foreground: #1b0c25;
|
--foreground: #250c0d;
|
||||||
--primary-cta: #1b0c25;
|
--primary-cta: #b82b40;
|
||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f7f6f7;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #1b0c25;
|
--secondary-cta-text: #250c0d;
|
||||||
--accent: #ff93e4;
|
--accent: #b90941;
|
||||||
--background-accent: #e8a8c3;
|
--background-accent: #e8a8b6;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user