Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2195117139 | |||
| 5f5e8b835e |
@@ -1,19 +1,9 @@
|
||||
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"],
|
||||
});
|
||||
import type { Metadata } from 'next';
|
||||
|
||||
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({
|
||||
children,
|
||||
@@ -21,17 +11,8 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<body className={`${geist.variable} ${geist_mono.variable}`}>
|
||||
<ServiceWrapper>
|
||||
<Tag />
|
||||
{children}
|
||||
</ServiceWrapper>
|
||||
<script
|
||||
async
|
||||
src="https://cdn.jsdelivr.net/npm/lenis@1.1.13/dist/lenis.min.js"
|
||||
></script>
|
||||
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -160,7 +160,7 @@ export default function ProjectDetailPage() {
|
||||
features={project.results.map((result: string, index: number) => ({
|
||||
id: String(index + 1),
|
||||
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,
|
||||
}))}
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user