Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 19:44:37 +00:00
2 changed files with 14 additions and 43 deletions

View File

@@ -1,52 +1,20 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Java Developer & Backend Architect | Alex Chen", description: "Expert Java developer specializing in scalable backend systems, microservices, and enterprise solutions. 8+ years crafting high-performance applications.", keywords: "Java developer, backend developer, Spring Boot, microservices, enterprise software, system design", metadataBase: new URL("https://alexchen.dev"),
alternates: {
canonical: "https://alexchen.dev"},
openGraph: {
title: "Java Developer & Backend Architect | Alex Chen", description: "Building scalable, performant backend systems with Java and microservices", url: "https://alexchen.dev", siteName: "Alex Chen Portfolio", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUgR2hYbOYemnWNslVhhHMDm8R/a-modern-developer-workspace-with-multip-1772652815751-689e2337.png", alt: "Java Developer Portfolio"},
],
},
twitter: {
card: "summary_large_image", title: "Java Developer & Backend Architect", description: "Expert backend engineer specializing in scalable systems and enterprise software", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUgR2hYbOYemnWNslVhhHMDm8R/a-modern-developer-workspace-with-multip-1772652815751-689e2337.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "Alex Chen - Java Developer & Backend Architect", description: "Backend developer specializing in Java, Spring Boot, and microservices architecture. 8+ years building scalable enterprise solutions."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -55,7 +55,8 @@ export default function LandingPage() {
tagIcon={Zap}
tagAnimation="slide-up"
buttons={[
{ text: "View My Projects", href: "#features" },
{ text: "Explore Portfolio", href: "#features" },
{ text: "Get In Touch", href: "#contact" },
{ text: "Download Resume", href: "#" },
]}
buttonAnimation="slide-up"
@@ -113,13 +114,16 @@ export default function LandingPage() {
features={[
{
id: 1,
title: "E-Commerce Platform API", description: "Built scalable microservices architecture handling 10M+ transactions monthly. Implemented Spring Boot REST APIs with Spring Cloud, achieving 99.99% uptime and sub-100ms response times.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUgR2hYbOYemnWNslVhhHMDm8R/a-sleek-e-commerce-platform-interface-bu-1772652815520-7bf0a3ed.png", imageAlt: "E-commerce platform architecture"},
title: "E-Commerce Platform API", description: "Built scalable microservices architecture handling 10M+ transactions monthly. Implemented Spring Boot REST APIs with Spring Cloud, achieving 99.99% uptime and sub-100ms response times.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUgR2hYbOYemnWNslVhhHMDm8R/a-sleek-e-commerce-platform-interface-bu-1772652815520-7bf0a3ed.png", imageAlt: "E-commerce platform architecture"
},
{
id: 2,
title: "Payment Processing System", description: "Developed secure payment gateway integrating multiple providers. Implemented PCI-DSS compliant service with distributed transaction management, fraud detection, and audit logging using Java concurrency.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUgR2hYbOYemnWNslVhhHMDm8R/a-secure-payment-processing-system-inter-1772652815879-ec7057cb.png", imageAlt: "Payment processing system"},
title: "Payment Processing System", description: "Developed secure payment gateway integrating multiple providers. Implemented PCI-DSS compliant service with distributed transaction management, fraud detection, and audit logging using Java concurrency.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUgR2hYbOYemnWNslVhhHMDm8R/a-secure-payment-processing-system-inter-1772652815879-ec7057cb.png", imageAlt: "Payment processing system"
},
{
id: 3,
title: "Real-Time Analytics Engine", description: "Created data streaming pipeline processing 100K+ events per second. Built with Apache Kafka and Java, aggregating real-time metrics with sub-second latency for business intelligence dashboards.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUgR2hYbOYemnWNslVhhHMDm8R/a-real-time-analytics-platform-dashboard-1772652815627-8571df4e.png", imageAlt: "Analytics engine dashboard"},
title: "Real-Time Analytics Engine", description: "Created data streaming pipeline processing 100K+ events per second. Built with Apache Kafka and Java, aggregating real-time metrics with sub-second latency for business intelligence dashboards.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUgR2hYbOYemnWNslVhhHMDm8R/a-real-time-analytics-platform-dashboard-1772652815627-8571df4e.png", imageAlt: "Analytics engine dashboard"
},
]}
animationType="blur-reveal"
textboxLayout="default"