Skip to content

Commit

Permalink
contact updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sinanptm committed Nov 15, 2024
1 parent a482b0e commit 9dd6d8b
Show file tree
Hide file tree
Showing 6 changed files with 5,625 additions and 29 deletions.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"cSpell.words": [
"stackoverflow"
]
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
cd portfolio</code></pre>
</li>
<li>Install dependencies:
<pre><code>npm install</code></pre>
<pre><code>pnpm install</code></pre>
</li>
<li>Set up environment variables:
<ul>
Expand All @@ -30,7 +30,7 @@ RECEIVER_EMAIL=recipient_email@example.com</code></pre>
</ul>
</li>
<li>Start the development server:
<pre><code>npm run dev</code></pre>
<pre><code>pnpm run dev</code></pre>
</li>
<li>Open your browser and visit <code>http://localhost:3000</code> to view the portfolio.</li>
</ol>
Expand Down
18 changes: 6 additions & 12 deletions constants/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
import { Tech } from "@/types";

export const socialLinks = [
{ image: '/assets/linkedin.svg', href: 'https://www.linkedin.com/in/sinanptm/', label: 'LinkedIn' },
{ image: '/assets/github.svg', href: 'https://github.com/sinanptm/', label: 'GitHub' },
{ image: '/assets/instagram.svg', href: 'https://www.instagram.com/si_an_z/', label: 'Instagram' },
{ image: '/assets/stackoverflow.svg', href: 'https://stackoverflow.com/users/25472984/sinan', label: 'Stack Overflow' },
];

export const profile = {
summary: ` Self-taught MERN stack developer passionate about building scalable, efficient applications.
Fascinated by technology from a young age, I&apos;ve continuously expanded my expertise across
Expand All @@ -22,8 +15,9 @@ export const navLinks = [
{ title: "LinkedIn", icon: "/assets/social/linkedin.svg", href: "https://www.linkedin.com/in/sinanptm" },
{ title: "GitHub", icon: "/assets/social/github.svg", href: "https://github.com/sinanptm" },
{ title: "Instagram", icon: "/assets/social/instagram.svg", href: "https://www.instagram.com/si_an_z" },
{ title: "Email", icon: "/assets/social/email.svg", href: "mailto:muhammedsinan0549@gmail.com" },
{ title: "phone", icon: "/assets/social/phone.svg", href: "tel:+918089507749" },
{ title: 'Stack Overflow', icon: '/assets/social/stackoverflow.png', href: 'https://stackoverflow.com/users/25472984/sinan' },
// { title: "Email", icon: "/assets/social/email.svg", href: "mailto:mail@gmail.com" },
// { title: "phone", icon: "/assets/social/phone.svg", href: "tel:+8989348934" },
];


Expand Down Expand Up @@ -327,7 +321,7 @@ export const technologies: Tech[] = [
{ name: "Postgres", url: `${basedUrl}/postgresql.svg` },
{ name: "MySQL", url: `${basedUrl}/mysql.svg` },


// Cloud & Hosting
{ name: "AWS", url: `${basedUrl}/aws.svg` },
{ name: "Cloudinary", url: `${basedUrl}/cloudinary.png` },
Expand All @@ -339,7 +333,7 @@ export const technologies: Tech[] = [
// WebRTC & Real-Time Communication
{ name: "WebRTC", url: `${basedUrl}/webrtc.svg` },
{ name: "Socket.io", url: `${basedUrl}/socket-io.svg` },

// State-management
{ name: "Redux", url: `${basedUrl}/redux.svg` },
{ name: "React Query", url: `${basedUrl}/react-query.svg` },
Expand All @@ -356,7 +350,7 @@ export const technologies: Tech[] = [
{ name: "Framer Motion", url: `${basedUrl}/framer-motion.svg` },
{ name: "Styled Components", url: `${basedUrl}/styled-components.svg` },
{ name: "Bootstrap", url: `${basedUrl}/bootstrap.svg` },

// UI Component Libraries
{ name: "Radix UI", url: `${basedUrl}/radix-ui.svg` },
{ name: "shadcn", url: `${basedUrl}/shadcn.svg` },
Expand Down
28 changes: 13 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,43 @@
"test": "echo \"No tests specified\" && exit 0"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@react-pdf-viewer/core": "^3.12.0",
"@react-pdf-viewer/default-layout": "^3.12.0",
"@react-three/drei": "^9.115.0",
"@react-three/drei": "^9.116.1",
"@react-three/fiber": "^8.17.10",
"@vercel/analytics": "^1.3.1",
"@vercel/analytics": "^1.4.0",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.11.9",
"framer-motion": "^11.11.17",
"mini-svg-data-uri": "^1.4.4",
"next": "14.2.15",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.16",
"react": "^18",
"react-dom": "^18",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"three": "^0.169.0",
"three-globe": "^2.34.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/node": "^20.17.6",
"@types/nodemailer": "^6.4.16",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.169.0",
"eslint": "^8",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.15",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5"
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3"
}
}
Loading

0 comments on commit 9dd6d8b

Please sign in to comment.