Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const metadata: Metadata = {
alternates: {
canonical: "https://sametdulger.dev",
},
category: "Technology",
category: "Technology",
};

// Optimized structured data - reduced size for better TTFB
Expand All @@ -107,8 +107,7 @@ const structuredData = {
},
"sameAs": [
"https://github.com/SametDulger",
"https://www.linkedin.com/in/sametdulger/",
"https://x.com/_SametDlgr"
"https://www.linkedin.com/in/sametdulger/"
],
"knowsAbout": [".NET", "C#", "React", "JavaScript", "TypeScript", "ASP.NET Core"],
"hasCredential": ["IBM JavaScript Developer", "Microsoft Back-End Developer"]
Expand Down
10 changes: 2 additions & 8 deletions src/components/Contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import { motion } from 'framer-motion'
import { FiGithub, FiLinkedin } from 'react-icons/fi'
import { FaXTwitter } from 'react-icons/fa6'


const socialLinks = [
Expand All @@ -18,12 +17,7 @@ const socialLinks = [
url: 'https://www.linkedin.com/in/SametDulger/',
username: 'linkedin.com/in/SametDulger',
},
{
name: 'X (Twitter)',
icon: FaXTwitter,
url: 'https://x.com/_SametDlgr',
username: 'x.com/_SametDlgr',
},

]


Expand All @@ -38,7 +32,7 @@ export default function Contact() {
<div className="flex justify-center">
<div className="w-full max-w-4xl">
<h3 className="text-3xl font-bold mb-8 text-white text-center">Links</h3>
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
{socialLinks.map((link, index) => (
<motion.div
key={link.name}
Expand Down
7 changes: 1 addition & 6 deletions src/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import { motion } from 'framer-motion'
import { FiArrowDown, FiGithub, FiLinkedin } from 'react-icons/fi'
import { FaXTwitter } from 'react-icons/fa6'

const socialLinks = [
{
Expand All @@ -15,11 +14,7 @@ const socialLinks = [
icon: FiLinkedin,
url: 'https://www.linkedin.com/in/SametDulger/',
},
{
name: 'X (Twitter)',
icon: FaXTwitter,
url: 'https://x.com/_SametDlgr',
},

]

export default function Hero() {
Expand Down
Loading