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",