From fc588f9e66472ae34e8f9ed8e9d75b0a89ae3aa4 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Thu, 21 May 2026 16:01:42 +0300 Subject: [PATCH] feat: set page title and description --- app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index a49bfa5..4ee2fdf 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -4,8 +4,8 @@ import { Footer } from '$widgets/Footer'; import './globals.css'; export const metadata: Metadata = { - title: 'Portfolio', - description: 'Portfolio', + title: 'Ilia Mashkov — Portfolio', + description: 'Portfolio of Ilia Mashkov, a frontend software engineer.', icons: { icon: '/favicon.svg' }, };