├── .eslintrc.json
├── README.md
├── public
└── assets
│ ├── png
│ ├── meta.png
│ ├── zap.png
│ ├── header.jpg
│ ├── stats.png
│ ├── pc-thumbnail.jpg
│ ├── ss-thumbnail.png
│ ├── atm-thumbnail.jpg
│ └── display picture.png
│ └── svg
│ ├── link.svg
│ ├── top.svg
│ ├── credits.svg
│ ├── projects.svg
│ ├── home.svg
│ └── uses.svg
├── postcss.config.js
├── .prettierrc
├── next.config.js
├── src
├── pages
│ ├── uses.tsx
│ ├── index.tsx
│ ├── credits.tsx
│ ├── projects.tsx
│ ├── _app.tsx
│ ├── _document.tsx
│ └── api
│ │ └── spotify.ts
├── styles
│ └── globals.css
├── components
│ ├── common
│ │ ├── SectionWrapper.tsx
│ │ ├── ParagraphWrapper.tsx
│ │ ├── PageName.tsx
│ │ ├── SectionHeading.tsx
│ │ ├── PageSubheading.tsx
│ │ ├── Tag.tsx
│ │ ├── index.ts
│ │ ├── ListWrapper.tsx
│ │ ├── DivWBorderWrapper.tsx
│ │ └── LinkWrapper.tsx
│ ├── Layout.tsx
│ ├── Footer.tsx
│ ├── Menu.tsx
│ └── Loader.tsx
├── containers
│ ├── projects
│ │ ├── index.tsx
│ │ └── ProjectsList.tsx
│ ├── uses
│ │ ├── index.tsx
│ │ ├── Applications.tsx
│ │ ├── Equipments.tsx
│ │ └── Extensions.tsx
│ ├── credits
│ │ ├── index.tsx
│ │ └── CreditsList.tsx
│ └── home
│ │ ├── Skills.tsx
│ │ ├── AboutMe.tsx
│ │ ├── index.tsx
│ │ ├── Social.tsx
│ │ ├── Extras.tsx
│ │ ├── Profile.tsx
│ │ └── Experience.tsx
└── utils
│ └── index.ts
├── tailwind.config.js
├── .gitignore
├── tsconfig.json
└── package.json
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Portfolio
2 |
3 | Coming soon. [Work in progress. ⚠️ ]
4 |
--------------------------------------------------------------------------------
/public/assets/png/meta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lostgirljourney/falgunisarkar/HEAD/public/assets/png/meta.png
--------------------------------------------------------------------------------
/public/assets/png/zap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lostgirljourney/falgunisarkar/HEAD/public/assets/png/zap.png
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/public/assets/png/header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lostgirljourney/falgunisarkar/HEAD/public/assets/png/header.jpg
--------------------------------------------------------------------------------
/public/assets/png/stats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lostgirljourney/falgunisarkar/HEAD/public/assets/png/stats.png
--------------------------------------------------------------------------------
/public/assets/png/pc-thumbnail.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lostgirljourney/falgunisarkar/HEAD/public/assets/png/pc-thumbnail.jpg
--------------------------------------------------------------------------------
/public/assets/png/ss-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lostgirljourney/falgunisarkar/HEAD/public/assets/png/ss-thumbnail.png
--------------------------------------------------------------------------------
/public/assets/png/atm-thumbnail.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lostgirljourney/falgunisarkar/HEAD/public/assets/png/atm-thumbnail.jpg
--------------------------------------------------------------------------------
/public/assets/png/display picture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lostgirljourney/falgunisarkar/HEAD/public/assets/png/display picture.png
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "semi": true,
3 | "trailingComma": "none",
4 | "singleQuote": true,
5 | "tabWidth": 2,
6 | "useTabs": true
7 | }
8 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true
4 | };
5 |
6 | module.exports = nextConfig;
7 |
--------------------------------------------------------------------------------
/src/pages/uses.tsx:
--------------------------------------------------------------------------------
1 | import { NextPage } from 'next';
2 | import Uses from '@/containers/uses';
3 |
4 | const UsesPage: NextPage = () =>
8 | {label} 9 |
10 | ); 11 | -------------------------------------------------------------------------------- /src/components/common/SectionHeading.tsx: -------------------------------------------------------------------------------- 1 | export const SectionHeading: React.FC<{ 2 | heading: string; 3 | fontColor: string; 4 | }> = ({ heading, fontColor }) => ( 5 |6 | {heading} 7 |
8 | ); 9 | -------------------------------------------------------------------------------- /public/assets/svg/credits.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'], 4 | theme: { 5 | extend: { 6 | colors: { 7 | black: '#080808' 8 | }, 9 | height: { 10 | 50: '200px' 11 | } 12 | } 13 | }, 14 | plugins: [] 15 | }; 16 | -------------------------------------------------------------------------------- /src/components/common/PageSubheading.tsx: -------------------------------------------------------------------------------- 1 | export const PageSubheading: React.FC<{ 2 | description: string; 3 | }> = ({ description }) => ( 4 |10 | {description} 11 |
12 | ); 13 | -------------------------------------------------------------------------------- /src/components/common/Tag.tsx: -------------------------------------------------------------------------------- 1 | export const Tag: React.FC<{ 2 | label: string; 3 | tagProps?: any; 4 | }> = ({ label, tagProps }) => ( 5 |10 | {label} 11 |
12 | ); 13 | -------------------------------------------------------------------------------- /src/components/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DivWBorderWrapper'; 2 | export * from './LinkWrapper'; 3 | export * from './ListWrapper'; 4 | export * from './PageName'; 5 | export * from './PageSubheading'; 6 | export * from './ParagraphWrapper'; 7 | export * from './SectionHeading'; 8 | export * from './SectionWrapper'; 9 | export * from './Tag'; 10 | -------------------------------------------------------------------------------- /public/assets/svg/projects.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/components/common/ListWrapper.tsx: -------------------------------------------------------------------------------- 1 | export const ListWrapper: React.FC<{ 2 | children: React.ReactNode; 3 | liProps?: React.HTMLProps12 | Passionate about crafting exceptional user experiences, I strive to 13 | create pixel-perfect interfaces that seamlessly blend design and 14 | engineering principles. 15 |
16 |18 | A lifelong learner, always seeking to expand my horizons. Thus, 19 | continuously exploring my capabilities to build efficient and scalable 20 | web applications. 21 |
22 |33 | this mode is always on! 🎶 34 |
35 | > 36 | )} 37 |
35 |
58 | {name} 59 |
60 |{desc}
66 |86 | {title} 87 |
88 |86 | {title} 87 |
88 |111 | Aniruddha Das 112 |
113 |
132 | For helping me to keep designing this site better and better.
133 |
134 | PS. This is v3 of my site, previous two were rejected by him.
135 | Sigh. 🙂
136 |
140 | {duration} 141 |
142 | {tags.map((tag, i) => { 143 | return ( 144 |