Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 14:01:00 +00:00
2 changed files with 9 additions and 83 deletions

View File

@@ -1,57 +1,19 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "AdvikaWeb - Enterprise Cloud Infrastructure Solutions", description: "High-performance cloud infrastructure and data center solutions with 99.99% uptime, global data centers, and 24/7 expert support.", keywords: "cloud infrastructure, data center, cloud hosting, enterprise cloud, cybersecurity, CDN, global servers", metadataBase: new URL("https://advikaweb.com"),
alternates: {
canonical: "https://advikaweb.com"},
openGraph: {
title: "AdvikaWeb - Enterprise Cloud Infrastructure", description: "Enterprise-grade cloud infrastructure with 99.99% uptime and global data centers.", url: "https://advikaweb.com", siteName: "AdvikaWeb", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZeYPnI2GuUOnBFJ0K72qCFm9W/a-futuristic-3d-floating-server-rack-or--1772804634315-531fc786.png", alt: "AdvikaWeb Cloud Infrastructure"},
],
},
twitter: {
card: "summary_large_image", title: "AdvikaWeb - Enterprise Cloud Infrastructure", description: "High-speed cloud solutions with 99.99% uptime guarantee", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZeYPnI2GuUOnBFJ0K72qCFm9W/a-futuristic-3d-floating-server-rack-or--1772804634315-531fc786.png"],
},
robots: {
index: true,
follow: true,
},
title: "AdvikaWeb | Enterprise Cloud Infrastructure Solutions", description: "Enterprise-grade cloud infrastructure and data center solutions powered by cutting-edge technology. 99.99% uptime, military-grade security, and 24/7 support."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1381,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -6,7 +6,6 @@ import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterCard from '@/components/sections/footer/FooterCard';
@@ -151,40 +150,6 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
title="What Our Clients Say"
description="Industry leaders trust AdvikaWeb for their most critical cloud infrastructure needs. Hear from enterprises that have transformed their operations."
tag="Testimonials"
textboxLayout="default"
animationType="scale-rotate"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Sarah Chen", role: "VP of Infrastructure", company: "TechCorp Global", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZeYPnI2GuUOnBFJ0K72qCFm9W/professional-headshot-of-a-tech-executiv-1772804633770-4c236615.png", imageAlt: "Sarah Chen"
},
{
id: "2", name: "Marcus Rodriguez", role: "Chief Technology Officer", company: "DataFlow Systems", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZeYPnI2GuUOnBFJ0K72qCFm9W/professional-headshot-of-a-data-center-m-1772804636095-96f1e73e.png", imageAlt: "Marcus Rodriguez"
},
{
id: "3", name: "Elena Kowalski", role: "Director of Cloud Operations", company: "CloudScale Enterprises", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZeYPnI2GuUOnBFJ0K72qCFm9W/professional-headshot-of-a-cloud-archite-1772804634741-b06a0d34.png", imageAlt: "Elena Kowalski"
},
{
id: "4", name: "James Sullivan", role: "Head of DevOps", company: "InnovateTech Solutions", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZeYPnI2GuUOnBFJ0K72qCFm9W/professional-headshot-of-a-devops-engine-1772804635118-0f4a4fd7.png", imageAlt: "James Sullivan"
}
]}
kpiItems={[
{ value: "99.99%", label: "Average Uptime" },
{ value: "15min", label: "Response Time" },
{ value: "10,000+", label: "Happy Customers" }
]}
/>
</div>
<div id="partners" data-section="partners">
<SocialProofOne
title="Trusted by Industry Leaders"
@@ -245,4 +210,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}