diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b3b575d..ebfc60a 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,69 +1,20 @@
import type { Metadata } from "next";
-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 halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "TechVision | IT Solutions & Custom Web Development",
- description: "Enterprise IT solutions, custom web development, cloud infrastructure, and DevOps services for startups to enterprises. Expert team delivering scalable, secure technology.",
- keywords: "IT solutions, web development, cloud services, DevOps, software development, IT consulting, enterprise software",
- metadataBase: new URL("https://techvision.io"),
- alternates: {
- canonical: "https://techvision.io",
- },
- openGraph: {
- title: "TechVision - Modern IT Solutions & Custom Development",
- description: "Transform your business with scalable IT solutions, custom web development, and cloud infrastructure services.",
- type: "website",
- siteName: "TechVision",
- images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-modern-clean-software-dashboard-interf-1772729537585-9c919811.png",
- alt: "TechVision IT Solutions Dashboard",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "TechVision - IT Solutions & Web Development",
- description: "Enterprise-grade IT solutions for modern businesses. Custom development, cloud infrastructure, and DevOps expertise.",
- images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-modern-clean-software-dashboard-interf-1772729537585-9c919811.png",
- ],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "TechVision - Scalable IT Solutions", description: "Custom web development, cloud infrastructure, and enterprise software solutions for modern enterprises."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index e1eb7a1..46820e1 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -74,19 +74,24 @@ export default function HomePage() {
mediaItems={[
{
imageSrc:
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-modern-clean-software-dashboard-interf-1772729537585-9c919811.png", imageAlt: "Modern IT solutions dashboard interface"},
+ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-modern-clean-software-dashboard-interf-1772729537585-9c919811.png", imageAlt: "Modern IT solutions dashboard interface"
+ },
{
imageSrc:
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-detailed-cloud-architecture-diagram-sh-1772729539141-72f3722b.png", imageAlt: "Cloud architecture diagram"},
+ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-detailed-cloud-architecture-diagram-sh-1772729539141-72f3722b.png", imageAlt: "Cloud architecture diagram"
+ },
{
imageSrc:
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-software-development-workflow-visualiz-1772729538228-ba8e9be4.png", imageAlt: "Software development workflow"},
+ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-software-development-workflow-visualiz-1772729538228-ba8e9be4.png", imageAlt: "Software development workflow"
+ },
{
imageSrc:
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-professional-development-team-collabor-1772729538144-311489f3.png", imageAlt: "Professional development team"},
+ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-professional-development-team-collabor-1772729538144-311489f3.png", imageAlt: "Professional development team"
+ },
{
imageSrc:
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-devops-deployment-pipeline-visualizati-1772729539254-6d642f23.png", imageAlt: "DevOps deployment pipeline"},
+ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-devops-deployment-pipeline-visualizati-1772729539254-6d642f23.png", imageAlt: "DevOps deployment pipeline"
+ },
]}
mediaAnimation="slide-up"
/>
@@ -102,7 +107,8 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
- "TechCorp Solutions", "CloudSync Inc", "InnovateLabs", "DataDrive Systems", "NetFlow Enterprises", "DevTools Pro", "SecureStack"]}
+ "TechCorp Solutions", "CloudSync Inc", "InnovateLabs", "DataDrive Systems", "NetFlow Enterprises", "DevTools Pro", "SecureStack"
+ ]}
speed={40}
showCard={true}
/>
@@ -122,27 +128,33 @@ export default function HomePage() {
{
icon: Globe,
title: "Custom Web Development", description:
- "React, Next.js, and Vue.js applications built for performance, scalability, and seamless user experiences."},
+ "React, Next.js, and Vue.js applications built for performance, scalability, and seamless user experiences."
+ },
{
icon: Server,
title: "Backend & API Development", description:
- "Robust APIs using Java Spring Boot, Node.js, and microservices architecture for enterprise reliability."},
+ "Robust APIs using Java Spring Boot, Node.js, and microservices architecture for enterprise reliability."
+ },
{
icon: Cloud,
title: "Cloud & DevOps Solutions", description:
- "AWS, Azure, and GCP infrastructure with Docker, Kubernetes, and CI/CD pipelines for continuous delivery."},
+ "AWS, Azure, and GCP infrastructure with Docker, Kubernetes, and CI/CD pipelines for continuous delivery."
+ },
{
icon: Lightbulb,
title: "IT Consulting", description:
- "Strategic technology advisory to optimize your infrastructure, reduce costs, and improve performance."},
+ "Strategic technology advisory to optimize your infrastructure, reduce costs, and improve performance."
+ },
{
icon: Shield,
title: "Enterprise Software", description:
- "Secure, scalable enterprise solutions with compliance, security, and long-term technical partnership."},
+ "Secure, scalable enterprise solutions with compliance, security, and long-term technical partnership."
+ },
{
icon: Zap,
title: "Performance Optimization", description:
- "System optimization, monitoring, and tuning to ensure maximum uptime and lightning-fast performance."},
+ "System optimization, monitoring, and tuning to ensure maximum uptime and lightning-fast performance."
+ },
]}
/>
@@ -164,19 +176,23 @@ export default function HomePage() {
{
icon: Zap,
title: "Agile Delivery", description:
- "Rapid iteration and continuous feedback ensure you get results faster without compromising quality."},
+ "Rapid iteration and continuous feedback ensure you get results faster without compromising quality."
+ },
{
icon: Shield,
title: "Enterprise Security", description:
- "Built-in compliance, encryption, and security protocols protect your data and meet regulatory requirements."},
+ "Built-in compliance, encryption, and security protocols protect your data and meet regulatory requirements."
+ },
{
icon: TrendingUp,
title: "Scalable Architecture", description:
- "Cloud-native, microservices-based solutions that grow with your business from startup to enterprise."},
+ "Cloud-native, microservices-based solutions that grow with your business from startup to enterprise."
+ },
{
icon: Users,
title: "Transparent Communication", description:
- "Dedicated project managers, regular updates, and clear roadmaps keep you informed every step of the way."},
+ "Dedicated project managers, regular updates, and clear roadmaps keep you informed every step of the way."
+ },
]}
/>
@@ -224,7 +240,7 @@ export default function HomePage() {
{/* Testimonials Section */}
@@ -344,4 +366,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}