├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── Header │ └── page.jsx ├── about │ └── page.jsx ├── contact │ └── page.jsx ├── favicon.ico ├── globals.css ├── layout.js ├── page.js ├── product │ └── page.jsx ├── project │ └── page.jsx └── rectangle │ └── page.jsx ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── font │ ├── Inter-Bold.ttf │ ├── Inter-Medium.ttf │ └── Inter-Regular.ttf ├── img │ ├── foot.png │ ├── fu.png │ ├── img1.png │ ├── img3.png │ ├── img4.png │ ├── img5.png │ ├── img6.png │ ├── pizza.png │ └── wink.png ├── next.svg └── vercel.svg ├── store └── zustore.jsx ├── tailwind.config.js └── theme └── Theming.jsx /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/README.md -------------------------------------------------------------------------------- /app/Header/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/app/Header/page.jsx -------------------------------------------------------------------------------- /app/about/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/app/about/page.jsx -------------------------------------------------------------------------------- /app/contact/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/app/contact/page.jsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/app/layout.js -------------------------------------------------------------------------------- /app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/app/page.js -------------------------------------------------------------------------------- /app/product/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/app/product/page.jsx -------------------------------------------------------------------------------- /app/project/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/app/project/page.jsx -------------------------------------------------------------------------------- /app/rectangle/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/app/rectangle/page.jsx -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/font/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/font/Inter-Bold.ttf -------------------------------------------------------------------------------- /public/font/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/font/Inter-Medium.ttf -------------------------------------------------------------------------------- /public/font/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/font/Inter-Regular.ttf -------------------------------------------------------------------------------- /public/img/foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/img/foot.png -------------------------------------------------------------------------------- /public/img/fu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/img/fu.png -------------------------------------------------------------------------------- /public/img/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/img/img1.png -------------------------------------------------------------------------------- /public/img/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/img/img3.png -------------------------------------------------------------------------------- /public/img/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/img/img4.png -------------------------------------------------------------------------------- /public/img/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/img/img5.png -------------------------------------------------------------------------------- /public/img/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/img/img6.png -------------------------------------------------------------------------------- /public/img/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/img/pizza.png -------------------------------------------------------------------------------- /public/img/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/img/wink.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /store/zustore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/store/zustore.jsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /theme/Theming.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/portfolioo/HEAD/theme/Theming.jsx --------------------------------------------------------------------------------