Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-05 07:22:11 +00:00
2 changed files with 15 additions and 69 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 { Mulish } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Softcloud.ai24/7 - Enterprise IT Freelance Services & Cloud Solutions",
description: "Professional IT freelance services including software development, cloud architecture, and 24/7 support. Multi-cloud integration with AWS, Google Cloud, and Nvidia. Real-time invoicing and advanced authentication.",
keywords: "IT freelance services, software development, cloud consulting, AWS, Google Cloud, custom software, technical support, digital transformation",
metadataBase: new URL("https://softcloud.ai"),
alternates: {
canonical: "https://softcloud.ai",
},
openGraph: {
title: "Softcloud.ai24/7 - Enterprise IT Solutions",
description: "Transform your business with professional IT services. Full-stack development, cloud migration, and 24/7 support.",
siteName: "Softcloud.ai24/7",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW3s03ndawXW2F0GHJ9VLH0nRz/a-cutting-edge-software-dashboard-interf-1772694801809-a9c82104.png",
alt: "Softcloud.ai Dashboard",
},
],
},
twitter: {
card: "summary_large_image",
title: "Softcloud.ai24/7 - Enterprise IT Services",
description: "Professional IT freelance services and cloud solutions for modern businesses.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW3s03ndawXW2F0GHJ9VLH0nRz/a-cutting-edge-software-dashboard-interf-1772694801809-a9c82104.png",
],
},
robots: {
index: true,
follow: true,
},
};
title: "Softcloud.ai - Enterprise-Grade IT Solutions", description: "Comprehensive freelance IT services with real-time project management, secure cloud integration, and 24/7 support. Powered by AWS, Google Cloud, and cutting-edge technology."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.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

@@ -154,7 +154,7 @@ const HomePage = () => {
<div id="pricing" data-section="pricing">
<PricingCardOne
title="Flexible Pricing Plans"
description="Choose the perfect plan for your IT needs. All plans include 24/7 support and cloud integration."
description="Choose the perfect plan for your IT needs. All plans include 24/7 support and cloud integration. Compare key features and differentiators across our Starter, Professional, and Enterprise tiers to find the right solution."
tag="Pricing"
tagIcon={DollarSign}
tagAnimation="slide-up"
@@ -165,24 +165,26 @@ const HomePage = () => {
{
id: "starter", badge: "Perfect for Startups", badgeIcon: Zap,
price: "₹29,999/mo", subtitle: "Essential IT services for growing teams", features: [
"Up to 50 hours/month support", "Basic cloud setup", "Monthly invoicing", "Standard response time (4 hours)", "Email & phone support"
"Up to 50 hours/month support", "Basic cloud setup", "Monthly invoicing", "Standard response time (4 hours)", "Email & phone support", "○ No dedicated account manager", "○ No API access"
]
},
{
id: "professional", badge: "Most Popular", badgeIcon: Zap,
price: "₹74,999/mo", subtitle: "Comprehensive solutions for established businesses", features: [
"Up to 150 hours/month support", "Advanced cloud architecture", "Real-time invoicing & reporting", "Priority response time (1 hour)", "Dedicated account manager", "API access & custom integrations"
"Up to 150 hours/month support", "Advanced cloud architecture", "Real-time invoicing & reporting", "Priority response time (1 hour)", "Dedicated account manager", "API access & custom integrations", "○ No multi-cloud management"
]
},
{
id: "enterprise", badge: "For Large Scale", badgeIcon: Zap,
price: "Custom", subtitle: "Enterprise-grade solutions with unlimited support", features: [
"Unlimited support hours", "Multi-cloud management", "Advanced analytics & insights", "24/7 emergency response", "Dedicated team (5+ engineers)", "Custom SLA agreements"
"Unlimited support hours", "Multi-cloud management", "Advanced analytics & insights", "24/7 emergency response", "Dedicated team (5+ engineers)", "Custom SLA agreements", "✓ White-label solutions"
]
}
]}
buttons={[{ text: "Get Started", href: "/login" }]}
buttonAnimation="slide-up"
cardClassName="pricing-card-enhanced pricing-card-differentiator"
featureItemClassName="pricing-feature-item-enhanced"
/>
</div>
@@ -276,4 +278,4 @@ const HomePage = () => {
);
};
export default HomePage;
export default HomePage;