Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-10 12:10:18 +00:00
4 changed files with 57 additions and 21 deletions

View File

@@ -95,7 +95,7 @@ export default function AboutPage() {
},
]}
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-professional-team-of-software-develope-1773144537851-0de4da3a.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-professional-team-of-software-develope-1773144537851-0de4da3a.jpg?_wi=2"
imageAlt="TechCore Team Collaboration"
mediaAnimation="slide-up"
metricsAnimation="entrance-slide"
@@ -112,7 +112,7 @@ export default function AboutPage() {
author: "Security Team",
description: "Military-grade encryption, multi-factor authentication, and comprehensive compliance frameworks including HIPAA, SOC 2, and ISO 27001 certifications.",
tags: ["Security", "Compliance"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/abstract-visualization-of-cloud-security-1773144532588-9315b3bb.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/abstract-visualization-of-cloud-security-1773144532588-9315b3bb.png?_wi=2",
imageAlt: "Cloud Security Features",
},
{
@@ -121,7 +121,7 @@ export default function AboutPage() {
author: "Product Team",
description: "AI-powered workflow automation that learns from patterns, reduces manual tasks by up to 80%, and improves operational efficiency across your organization.",
tags: ["AI", "Automation"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/modern-automation-workflow-visualization-1773144537987-5ca7d5b2.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/modern-automation-workflow-visualization-1773144537987-5ca7d5b2.jpg?_wi=2",
imageAlt: "Automation Workflow",
},
{
@@ -130,7 +130,7 @@ export default function AboutPage() {
author: "Infrastructure Team",
description: "Cloud-native architecture that scales seamlessly from startup to enterprise, supporting millions of transactions per second without performance degradation.",
tags: ["Scalability", "Cloud"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/abstract-representation-of-scalability-a-1773144535133-0294c819.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/abstract-representation-of-scalability-a-1773144535133-0294c819.jpg?_wi=2",
imageAlt: "Scalable Architecture",
},
]}

View File

@@ -53,7 +53,7 @@ export default function BlogPage() {
category: ["Security", "Compliance"],
title: "Enterprise Security: Building Resilient Systems",
excerpt: "Understand the critical security considerations for enterprise software architecture and regulatory compliance frameworks.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/abstract-visualization-of-cloud-security-1773144532588-9315b3bb.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/abstract-visualization-of-cloud-security-1773144532588-9315b3bb.png?_wi=3",
imageAlt: "Security architecture",
authorName: "Michael Chen",
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/professional-headshot-of-a-startup-found-1773144532923-cb854b6d.png",

View File

@@ -6,18 +6,52 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "TechCore - Enterprise Software Solutions",
description: "Transform your business with TechCore's enterprise-grade software platform. Secure, scalable, and intelligent solutions for modern enterprises.",
keywords: "enterprise software, cloud solutions, digital transformation, AI automation, software platform",
metadataBase: new URL("https://techcore.io"),
alternates: {
canonical: "https://techcore.io",
},
openGraph: {
title: "TechCore - Enterprise Software Solutions",
description: "Transform your business with TechCore's enterprise-grade software platform.",
url: "https://techcore.io",
siteName: "TechCore",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-modern-sleek-software-dashboard-interf-1773144534031-d6361a36.jpg",
alt: "TechCore Enterprise Dashboard",
},
],
},
twitter: {
card: "summary_large_image",
title: "TechCore - Enterprise Software Solutions",
description: "Transform your business with TechCore's enterprise-grade software platform.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-modern-sleek-software-dashboard-interf-1773144534031-d6361a36.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -26,7 +60,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -38,4 +74,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -125,7 +125,7 @@ export default function HomePage() {
},
]}
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-professional-team-of-software-develope-1773144537851-0de4da3a.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-professional-team-of-software-develope-1773144537851-0de4da3a.jpg?_wi=1"
imageAlt="TechCore Team Collaboration"
mediaAnimation="slide-up"
metricsAnimation="entrance-slide"
@@ -142,7 +142,7 @@ export default function HomePage() {
author: "Security Team",
description: "Military-grade encryption, multi-factor authentication, and comprehensive compliance frameworks including HIPAA, SOC 2, and ISO 27001 certifications.",
tags: ["Security", "Compliance"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/abstract-visualization-of-cloud-security-1773144532588-9315b3bb.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/abstract-visualization-of-cloud-security-1773144532588-9315b3bb.png?_wi=1",
imageAlt: "Cloud Security Features",
},
{
@@ -151,7 +151,7 @@ export default function HomePage() {
author: "Product Team",
description: "AI-powered workflow automation that learns from patterns, reduces manual tasks by up to 80%, and improves operational efficiency across your organization.",
tags: ["AI", "Automation"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/modern-automation-workflow-visualization-1773144537987-5ca7d5b2.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/modern-automation-workflow-visualization-1773144537987-5ca7d5b2.jpg?_wi=1",
imageAlt: "Automation Workflow",
},
{
@@ -160,7 +160,7 @@ export default function HomePage() {
author: "Infrastructure Team",
description: "Cloud-native architecture that scales seamlessly from startup to enterprise, supporting millions of transactions per second without performance degradation.",
tags: ["Scalability", "Cloud"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/abstract-representation-of-scalability-a-1773144535133-0294c819.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/abstract-representation-of-scalability-a-1773144535133-0294c819.jpg?_wi=1",
imageAlt: "Scalable Architecture",
},
]}
@@ -216,7 +216,7 @@ export default function HomePage() {
quote: "TechCore transformed our legacy systems into a modern, scalable platform. The implementation was seamless, and within months we saw a 300% increase in transaction capacity with improved security.",
name: "Sarah Chen",
role: "Chief Technology Officer",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/professional-headshot-of-a-confident-sof-1773144534034-c544170a.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/professional-headshot-of-a-confident-sof-1773144534034-c544170a.png?_wi=1",
imageAlt: "Sarah Chen",
},
{
@@ -225,7 +225,7 @@ export default function HomePage() {
quote: "The 99.99% uptime guarantee gave us the confidence to migrate critical workloads. Their support team is exceptional - always available and knowledgeable.",
name: "James Rodriguez",
role: "VP of Engineering",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/professional-headshot-of-a-technical-eng-1773144534249-fd7ec2b9.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/professional-headshot-of-a-technical-eng-1773144534249-fd7ec2b9.jpg?_wi=1",
imageAlt: "James Rodriguez",
},
{
@@ -252,7 +252,7 @@ export default function HomePage() {
quote: "The integration process was straightforward, and TechCore's team provided excellent guidance. They truly understand enterprise needs.",
name: "David Park",
role: "IT Director",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/professional-headshot-of-a-confident-sof-1773144534034-c544170a.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/professional-headshot-of-a-confident-sof-1773144534034-c544170a.png?_wi=2",
imageAlt: "David Park",
},
{
@@ -261,7 +261,7 @@ export default function HomePage() {
quote: "Passing our security audits was effortless with TechCore's built-in compliance frameworks. One less headache for our security team.",
name: "Lisa Martinez",
role: "Security Officer",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/professional-headshot-of-a-technical-eng-1773144534249-fd7ec2b9.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/professional-headshot-of-a-technical-eng-1773144534249-fd7ec2b9.jpg?_wi=2",
imageAlt: "Lisa Martinez",
},
]}