Repository: avneesh0612/portfolio Branch: main Commit: deb869ce7585 Files: 46 Total size: 46.1 KB Directory structure: gitextract_38gvouyj/ ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public/ │ ├── fonts/ │ │ ├── Geomanist-Regular-Italic.otf │ │ └── Geomanist-Regular.otf │ ├── robots.txt │ ├── rss.xml │ └── sitemap.xml ├── src/ │ ├── app/ │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components/ │ │ ├── Blog.tsx │ │ ├── Contact.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Hero.tsx │ │ ├── Icons/ │ │ │ ├── CrossIcon.tsx │ │ │ ├── FarcasterIcon.tsx │ │ │ ├── GithubIcon.tsx │ │ │ ├── LinkedInIcon.tsx │ │ │ ├── Logo.tsx │ │ │ ├── MailIcon.tsx │ │ │ ├── MenuIcon.tsx │ │ │ ├── VisitIcon.tsx │ │ │ ├── XIcon.tsx │ │ │ └── index.ts │ │ ├── Main.tsx │ │ ├── Projects.tsx │ │ ├── Work.tsx │ │ ├── index.ts │ │ ├── theme-provider.tsx │ │ └── theme-toggle.tsx │ ├── data/ │ │ ├── index.ts │ │ ├── nav.ts │ │ ├── personal.ts │ │ ├── projects.ts │ │ ├── social.tsx │ │ └── work.ts │ ├── types/ │ │ └── PostType.ts │ └── utils/ │ └── getPosts.ts ├── tailwind.config.ts └── tsconfig.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /node_modules /.pnp .pnp.* .yarn/* !.yarn/patches !.yarn/plugins !.yarn/releases !.yarn/versions # testing /coverage # next.js /.next/ /out/ # production /build # misc .DS_Store *.pem # debug npm-debug.log* yarn-debug.log* yarn-error.log* .pnpm-debug.log* # env files (can opt-in for committing if needed) .env* # vercel .vercel # typescript *.tsbuildinfo next-env.d.ts ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2025 Avneesh Agarwal Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================

Portfolio

License: MIT X: avneesh0612

A minimalistic SEO-friendly portfolio template built with Next.js and Tailwind CSS. Feel Free to fork it, update your details, and use it. ![Portfolio Preview](https://avneesh.tech/about.png) ## Links - [Live Demo](https://www.avneesh.tech/) - [Source Code](https://github.com/avneesh0612/portfolio) ## Developer **Avneesh Agarwal** - Website: [avneesh.tech](https://www.avneesh.tech/) - GitHub: [@avneesh0612](https://github.com/avneesh0612) - X: [@avneesh0612](https://X.com/avneesh0612) - LinkedIn: [@avneesh0612](https://linkedin.com/in/avneesh0612) - Warpcast: [@avneesh0612](https://warpcast.com/avneesh) ## License [MIT](https://github.com/avneesh0612/portfolio/blob/main/LICENSE) © 2025 Avneesh Agarwal ================================================ FILE: eslint.config.mjs ================================================ import { dirname } from "path"; import { fileURLToPath } from "url"; import { FlatCompat } from "@eslint/eslintrc"; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); const compat = new FlatCompat({ baseDirectory: __dirname, }); const eslintConfig = [ ...compat.extends("next/core-web-vitals", "next/typescript"), ]; export default eslintConfig; ================================================ FILE: next.config.ts ================================================ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ }; export default nextConfig; ================================================ FILE: package.json ================================================ { "name": "portfolio", "version": "0.1.0", "private": true, "scripts": { "dev": "next dev --turbopack", "build": "next build", "start": "next start", "lint": "next lint" }, "dependencies": { "framer-motion": "^12.5.0", "lucide-react": "^0.483.0", "next": "15.2.3", "react": "^19.0.0", "react-dom": "^19.0.0", "react-rough-notation": "^1.0.5", "react-scroll": "^1.9.3", "schema-dts": "^1.1.5" }, "devDependencies": { "@eslint/eslintrc": "^3.3.0", "@tailwindcss/postcss": "^4.0.14", "@types/node": "^20.17.24", "@types/react": "^19.0.11", "@types/react-dom": "^19.0.4", "@types/react-scroll": "^1.8.10", "eslint": "^9.22.0", "eslint-config-next": "15.2.3", "tailwindcss": "^4.0.14", "typescript": "^5.8.2" } } ================================================ FILE: postcss.config.mjs ================================================ const config = { plugins: ["@tailwindcss/postcss"], }; export default config; ================================================ FILE: public/robots.txt ================================================ User-agent: * Disallow: ================================================ FILE: public/rss.xml ================================================ Avneesh Agarwal https://avneesh.tech/ Hey, I'm Avneesh Agarwal — a developer based in India, passionate about building powerful dev tools, contributing to open source, and sharing my learnings through writing. Currently, I'm the CTO at Orcas, where we're reshaping equity crowdfunding for startups. I've worked across multiple startups as a developer relations engineer, full-stack developer, and technical writer, helping teams build, scale, and engage with developer communities. When I'm not coding, you'll find me experimenting with side projects, writing articles, or diving into something completely random—just for the fun of it. Oh, and I'm also a sports enthusiast (fitness freak + nerd combo :p). Thurs, 20 Mar 2025 12:00:00 GMT https://validator.w3.org/feed/docs/rss2.html https://github.com/jpmonette/feed en Avneesh Agarwal https://avneesh.tech/about.png https://avneesh.tech/ All rights reserved, Avneesh Agarwal Technology Programming Web Development Web3 development Blogger Avneesh Agarwal ================================================ FILE: public/sitemap.xml ================================================ https://avneesh.tech/ 2025-03-20 1.0 ================================================ FILE: src/app/globals.css ================================================ @import "tailwindcss"; @config "../../tailwind.config.ts"; :root { --background: theme("colors.background.light"); --foreground: theme("colors.foreground.light"); --icon-color: theme("colors.neutral.900"); --primary: theme("colors.primary.DEFAULT"); --primary-hover: theme("colors.primary.hover"); --accent-first: theme("colors.accent.first"); --accent-second: theme("colors.accent.second"); --accent-third: theme("colors.accent.third"); } :root.dark { --background: theme("colors.background.dark"); --foreground: theme("colors.foreground.dark"); --icon-color: theme("colors.neutral.100"); } @theme inline { --color-background: var(--background); --color-foreground: var(--foreground); --font-sans: var(--font-geist-sans); --font-mono: var(--font-geist-mono); } body { background: var(--background); color: var(--foreground); transition: background-color 0.3s ease, color 0.3s ease; } @font-face { font-family: "Geomanist"; src: url("/fonts/Geomanist-Regular.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: "Geomanist"; src: url("/fonts/Geomanist-Regular-Italic.otf") format("opentype"); font-weight: 400; font-style: italic; font-display: swap; } ================================================ FILE: src/app/layout.tsx ================================================ import { Footer, Header } from "@/components"; import { ThemeProvider } from "@/components/theme-provider"; import { personalData } from "@/data"; import type { Metadata, Viewport } from "next"; import "./globals.css"; export const viewport: Viewport = { themeColor: "#0A0A0A", width: "device-width", initialScale: 1, maximumScale: 5, }; export const metadata: Metadata = { metadataBase: new URL(personalData.site), title: { template: `%s | ${personalData.name}`, default: `${personalData.name} | ${personalData.designation}`, }, description: personalData.metaDescription, authors: [{ name: personalData.name, url: personalData.site }], keywords: personalData.keywords, referrer: "no-referrer-when-downgrade", alternates: { canonical: personalData.site, languages: { "en-US": personalData.site, }, }, openGraph: { title: `${personalData.name} | ${personalData.designation}`, description: personalData.metaDescription, url: personalData.site, siteName: personalData.name, images: [ { url: "/about.png", width: 1200, height: 630, alt: `${personalData.name} - ${personalData.designation}`, }, ], type: "website", locale: "en-US", }, twitter: { card: "summary_large_image", title: `${personalData.name} | ${personalData.designation}`, description: personalData.metaDescription, creator: `@${personalData.x}`, images: ["/about.png"], }, icons: { icon: "/favicon.ico", apple: "/apple-touch-icon.png", shortcut: "/favicon.ico", }, manifest: "/site.webmanifest", robots: { index: true, follow: true, nocache: true, googleBot: { index: true, follow: true, nocache: true, "max-snippet": -1, "max-image-preview": "large", "max-video-preview": -1, }, }, category: "website", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}