From fc14384ba50d0e548db32904aa97d4d4a9a13b34 Mon Sep 17 00:00:00 2001 From: HangerThem Date: Mon, 12 Aug 2024 15:45:46 +0200 Subject: [PATCH] Added img for Portfolio project --- app/api/v1/email/route.ts | 2 +- app/layout.tsx | 2 +- data/projects.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/api/v1/email/route.ts b/app/api/v1/email/route.ts index 3e6a18d..459ae73 100644 --- a/app/api/v1/email/route.ts +++ b/app/api/v1/email/route.ts @@ -37,7 +37,7 @@ export async function POST(req: NextRequest, res: NextResponse) { text: message, }) - return successResponse("Email sent successfully") + return successResponse({ message: "Email sent successfully" }) } catch (e) { console.error(e) return internalServerErrorResponse() diff --git a/app/layout.tsx b/app/layout.tsx index 5159dc9..580f5a2 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -33,12 +33,12 @@ export const metadata: Metadata = { alternateLocale: ["cs_CZ"], countryName: "Czechia", emails: ["f.borisjuk@hangerthem.com"], + images: ["https://hangerthem.com/hangerthem.png"], url: "https://hangerthem.com", determiner: "auto", ttl: 604800, audio: [], faxNumbers: [], - images: [], phoneNumbers: [], videos: [], }, diff --git a/data/projects.ts b/data/projects.ts index 1b32335..08d5ed7 100644 --- a/data/projects.ts +++ b/data/projects.ts @@ -32,7 +32,7 @@ const projects: Project[] = [ { title: "HangerThem Portfolio", description: "This very website and my personal portfolio.", - // image: "/hangerthem.png", + image: "/hangerthem.png", techStack: ["Next.js", "TypeScript", "Styled Components"], href: "https://hangerthem.com", source: "https://github.com/HangerThem/hangerthem.com",