From 901f433bf87b5e026e3118a0078e88c1df8e4df7 Mon Sep 17 00:00:00 2001 From: misterkirill Date: Tue, 15 Jul 2025 16:24:39 +0500 Subject: [PATCH] feat: add website --- src/app/layout.tsx | 15 ++--- src/app/page.tsx | 133 +++++++++++++--------------------------- src/components/Card.tsx | 14 +++++ 3 files changed, 60 insertions(+), 102 deletions(-) create mode 100644 src/components/Card.tsx diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7fa87e..333636a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,15 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Geist_Mono } from "next/font/google"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Kirill Siukhin 👋", + description: "Hey! My name is Kirill and I am making interesting things in the web :)", }; export default function RootLayout({ @@ -24,9 +19,7 @@ export default function RootLayout({ }>) { return ( - + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index e68abe6..117858c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,102 +1,53 @@ -import Image from "next/image"; +import Card from "@/components/Card"; export default function Home() { return ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - src/app/page.tsx - - . -
  2. -
  3. - Save and see your changes instantly. -
  4. -
+
+
+ Kirill Siukhin +
-
- - Vercel logomark - Deploy now +
+

_AboutMe

+
+ Hello there! My name is Kirill Siukhin, I am 17 years old front-end developer and musician from Russia, Yekaterinburg.
+ I like to make things. +
+ +

_Projects

+
+ +

_Skills

+ + +

_Contacts

+
+ Contact me on Bluesky, Telegram or email: kirillsiukhin@proton.me +
-
); diff --git a/src/components/Card.tsx b/src/components/Card.tsx new file mode 100644 index 0000000..cf9bf11 --- /dev/null +++ b/src/components/Card.tsx @@ -0,0 +1,14 @@ +export default function Card({ + title, + description, +}: { + title: string; + description: string; +}) { + return ( +
+

{title}

+ {description} +
+ ); +}