2 Commits

Author SHA1 Message Date
2195117139 Update src/app/layout.tsx 2026-03-09 08:35:49 +00:00
5f5e8b835e Update src/app/projects/[id]/page.tsx 2026-03-09 08:33:30 +00:00
2 changed files with 7 additions and 26 deletions

View File

@@ -1,19 +1,9 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/providers/themeProvider/ServiceWrapper";
import { Tag } from "@/components/tag/Tag";
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geist_mono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Portfolio | Creative Design & UX Expertise", description: "Explore innovative design solutions and digital experiences crafted with strategic thinking and creative excellence."}; title: 'Portfolio',
description: 'Portfolio website',
};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -21,17 +11,8 @@ export default function RootLayout({
children: React.ReactNode; children: React.ReactNode;
}) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<body className={`${geist.variable} ${geist_mono.variable}`}> <body>{children}
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
<script
async
src="https://cdn.jsdelivr.net/npm/lenis@1.1.13/dist/lenis.min.js"
></script>
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `

View File

@@ -160,7 +160,7 @@ export default function ProjectDetailPage() {
features={project.results.map((result: string, index: number) => ({ features={project.results.map((result: string, index: number) => ({
id: String(index + 1), id: String(index + 1),
title: result, title: result,
author: "Achievement", description: `Successfully delivered this key result through strategic design and implementation.", tags: ["Success", "Impact"], author: "Achievement", description: "Successfully delivered this key result through strategic design and implementation.", tags: ["Success", "Impact"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhRowzw9k0ZSJ87n7KX34EwoE1/abstract-illustration-representing-creat-1773043067648-d1f91d56.png", imageAlt: result, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhRowzw9k0ZSJ87n7KX34EwoE1/abstract-illustration-representing-creat-1773043067648-d1f91d56.png", imageAlt: result,
}))} }))}
animationType="slide-up" animationType="slide-up"