From 6966831656fc85788f0ab254bc777bf72456423d Mon Sep 17 00:00:00 2001 From: Oguzhan Ertas <74022564+oerts@users.noreply.github.com> Date: Mon, 23 Dec 2024 16:11:32 -0500 Subject: [PATCH] feat: add talks component --- app/components/about.tsx | 26 ++++++++++++++++ app/components/contact.tsx | 20 ++++++++++++ app/components/footer.tsx | 2 +- app/components/nav.tsx | 31 ++++++++++--------- app/components/posts.tsx | 16 +++++----- app/components/projects.tsx | 37 ++++++++++++++++++++++ app/components/talks.tsx | 37 ++++++++++++++++++++++ app/components/tilt-card.tsx | 59 ++++++++++++++++++++++++++++++++++++ app/global.css | 14 +++++++++ app/layout.tsx | 4 +-- app/og/route.tsx | 2 +- app/page.tsx | 27 ++++++----------- package.json | 3 +- pnpm-lock.yaml | 8 +++++ public/a15.svg | 12 ++++++++ public/logo.svg | 4 +-- 16 files changed, 255 insertions(+), 47 deletions(-) create mode 100644 app/components/about.tsx create mode 100644 app/components/contact.tsx create mode 100644 app/components/projects.tsx create mode 100644 app/components/talks.tsx create mode 100644 app/components/tilt-card.tsx create mode 100644 public/a15.svg diff --git a/app/components/about.tsx b/app/components/about.tsx new file mode 100644 index 0000000..26c7a46 --- /dev/null +++ b/app/components/about.tsx @@ -0,0 +1,26 @@ +import Image from "next/image"; + +export default function About() { + return ( +
+

+ About +

+

+ Hi, I'm Oz, a UI Developer with a passion for building user-friendly + interfaces. I enjoy working with TypeScript, React, and Next.js, and + have spent the last 3 years building reusable UI components at{" "} + + Atolye15 logo + Atolye15 + + . Outside of coding, I enjoy writing and am committed to continuous + learning. +

+
+ ); +} diff --git a/app/components/contact.tsx b/app/components/contact.tsx new file mode 100644 index 0000000..7aca874 --- /dev/null +++ b/app/components/contact.tsx @@ -0,0 +1,20 @@ +export default function Contact() { + return ( +
+

+ Contact +

+

+ Feel free to reach out to me via email. I'm always open to interesting + conversations and opportunities. +

+
+
+ hey + [at] + ertas.dev +
+
+
+ ); +} diff --git a/app/components/footer.tsx b/app/components/footer.tsx index fc0130a..e2392fe 100644 --- a/app/components/footer.tsx +++ b/app/components/footer.tsx @@ -17,7 +17,7 @@ function ArrowIcon() { export default function Footer() { return ( -