├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── compact │ └── page.jsx ├── components │ ├── Footer.jsx │ ├── Header.jsx │ ├── InfiniteMovingCards.jsx │ ├── InfoIcon.jsx │ ├── InvalidCardIcon.jsx │ ├── LinkCompact.jsx │ ├── LinkRounded.jsx │ ├── Links.jsx │ ├── Location.jsx │ ├── Message.jsx │ ├── MonitorMobileIcon.jsx │ ├── Photos.jsx │ ├── Services.jsx │ ├── ShieldSecurityIcon.jsx │ ├── Stars.jsx │ ├── Store.jsx │ ├── Stories.jsx │ ├── Story.jsx │ ├── StoryThumbnail.jsx │ ├── Testimonials.jsx │ └── YutubeLink.jsx ├── favicon.ico ├── globals.css ├── influencer │ └── page.jsx ├── layout.js ├── page.js ├── podcast │ └── page.jsx ├── rounded │ └── page.jsx ├── standard │ ├── StandardLink.jsx │ └── layout.jsx ├── writer │ └── page.jsx └── youtuber │ └── page.jsx ├── data.js ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── font │ ├── Interegular.otf │ ├── Interlight.otf │ └── Intermedium.otf ├── images │ ├── cry.jpg │ ├── f.jpg │ ├── img1.jpg │ ├── img10.jpg │ ├── img11.jpg │ ├── img3.jpg │ ├── img4.jpg │ ├── img4.png │ ├── img5.jpg │ ├── img6.jpg │ ├── img7.jpg │ ├── img8.jpg │ ├── img9.jpg │ ├── mapp.webp │ ├── mappp.webp │ └── yellow.jpg ├── next.svg ├── vercel.svg └── videos │ └── yutube.mp4 └── tailwind.config.js /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/README.md -------------------------------------------------------------------------------- /app/compact/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/compact/page.jsx -------------------------------------------------------------------------------- /app/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Footer.jsx -------------------------------------------------------------------------------- /app/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Header.jsx -------------------------------------------------------------------------------- /app/components/InfiniteMovingCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/InfiniteMovingCards.jsx -------------------------------------------------------------------------------- /app/components/InfoIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/InfoIcon.jsx -------------------------------------------------------------------------------- /app/components/InvalidCardIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/InvalidCardIcon.jsx -------------------------------------------------------------------------------- /app/components/LinkCompact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/LinkCompact.jsx -------------------------------------------------------------------------------- /app/components/LinkRounded.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/LinkRounded.jsx -------------------------------------------------------------------------------- /app/components/Links.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Links.jsx -------------------------------------------------------------------------------- /app/components/Location.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Location.jsx -------------------------------------------------------------------------------- /app/components/Message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Message.jsx -------------------------------------------------------------------------------- /app/components/MonitorMobileIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/MonitorMobileIcon.jsx -------------------------------------------------------------------------------- /app/components/Photos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Photos.jsx -------------------------------------------------------------------------------- /app/components/Services.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Services.jsx -------------------------------------------------------------------------------- /app/components/ShieldSecurityIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/ShieldSecurityIcon.jsx -------------------------------------------------------------------------------- /app/components/Stars.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Stars.jsx -------------------------------------------------------------------------------- /app/components/Store.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Store.jsx -------------------------------------------------------------------------------- /app/components/Stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Stories.jsx -------------------------------------------------------------------------------- /app/components/Story.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Story.jsx -------------------------------------------------------------------------------- /app/components/StoryThumbnail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/StoryThumbnail.jsx -------------------------------------------------------------------------------- /app/components/Testimonials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/Testimonials.jsx -------------------------------------------------------------------------------- /app/components/YutubeLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/components/YutubeLink.jsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/influencer/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/influencer/page.jsx -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/layout.js -------------------------------------------------------------------------------- /app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/page.js -------------------------------------------------------------------------------- /app/podcast/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/podcast/page.jsx -------------------------------------------------------------------------------- /app/rounded/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/rounded/page.jsx -------------------------------------------------------------------------------- /app/standard/StandardLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/standard/StandardLink.jsx -------------------------------------------------------------------------------- /app/standard/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/standard/layout.jsx -------------------------------------------------------------------------------- /app/writer/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/writer/page.jsx -------------------------------------------------------------------------------- /app/youtuber/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/app/youtuber/page.jsx -------------------------------------------------------------------------------- /data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/data.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/font/Interegular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/font/Interegular.otf -------------------------------------------------------------------------------- /public/font/Interlight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/font/Interlight.otf -------------------------------------------------------------------------------- /public/font/Intermedium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/font/Intermedium.otf -------------------------------------------------------------------------------- /public/images/cry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/cry.jpg -------------------------------------------------------------------------------- /public/images/f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/f.jpg -------------------------------------------------------------------------------- /public/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img1.jpg -------------------------------------------------------------------------------- /public/images/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img10.jpg -------------------------------------------------------------------------------- /public/images/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img11.jpg -------------------------------------------------------------------------------- /public/images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img3.jpg -------------------------------------------------------------------------------- /public/images/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img4.jpg -------------------------------------------------------------------------------- /public/images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img4.png -------------------------------------------------------------------------------- /public/images/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img5.jpg -------------------------------------------------------------------------------- /public/images/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img6.jpg -------------------------------------------------------------------------------- /public/images/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img7.jpg -------------------------------------------------------------------------------- /public/images/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img8.jpg -------------------------------------------------------------------------------- /public/images/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/img9.jpg -------------------------------------------------------------------------------- /public/images/mapp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/mapp.webp -------------------------------------------------------------------------------- /public/images/mappp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/mappp.webp -------------------------------------------------------------------------------- /public/images/yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/images/yellow.jpg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/videos/yutube.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/public/videos/yutube.mp4 -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joscriptt/multiphaceportfolio/HEAD/tailwind.config.js --------------------------------------------------------------------------------