├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── Screenshot-1.png ├── Screenshot-2.png ├── Screenshot.jpg ├── app ├── components │ ├── about-section │ │ ├── About.tsx │ │ └── ContraButton.tsx │ ├── contact+footer │ │ ├── Contact.tsx │ │ └── Footer.tsx │ ├── header-section │ │ ├── Header.tsx │ │ └── MobileMenu.tsx │ ├── hero-section │ │ └── Hero.tsx │ ├── ui │ │ ├── AnimatedBody.tsx │ │ ├── AnimatedTitle.tsx │ │ └── Title.tsx │ └── work-section │ │ ├── FolioCard.tsx │ │ ├── Tag.tsx │ │ ├── Timeline.tsx │ │ ├── TimelineItem.module.css │ │ ├── TimelineItem.tsx │ │ └── Works.tsx ├── globals.css ├── icon.svg ├── layout.tsx ├── not-found.tsx └── page.tsx ├── contexts └── ViewContext.tsx ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── ade-logo.svg ├── black.png ├── bluechip.svg ├── hand-wave.svg ├── multistep.svg ├── nijasit.svg ├── nnpc.svg ├── offset-folio.svg ├── pnf.svg ├── position-icon.svg ├── quiklearn.svg ├── shortly.svg ├── smile.svg ├── todo.svg ├── transparent-ade-min.png ├── transparent-ade.png └── witw.svg ├── tsconfig.json └── utils └── blobity.config.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/Screenshot-1.png -------------------------------------------------------------------------------- /Screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/Screenshot-2.png -------------------------------------------------------------------------------- /Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/Screenshot.jpg -------------------------------------------------------------------------------- /app/components/about-section/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/about-section/About.tsx -------------------------------------------------------------------------------- /app/components/about-section/ContraButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/about-section/ContraButton.tsx -------------------------------------------------------------------------------- /app/components/contact+footer/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/contact+footer/Contact.tsx -------------------------------------------------------------------------------- /app/components/contact+footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/contact+footer/Footer.tsx -------------------------------------------------------------------------------- /app/components/header-section/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/header-section/Header.tsx -------------------------------------------------------------------------------- /app/components/header-section/MobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/header-section/MobileMenu.tsx -------------------------------------------------------------------------------- /app/components/hero-section/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/hero-section/Hero.tsx -------------------------------------------------------------------------------- /app/components/ui/AnimatedBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/ui/AnimatedBody.tsx -------------------------------------------------------------------------------- /app/components/ui/AnimatedTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/ui/AnimatedTitle.tsx -------------------------------------------------------------------------------- /app/components/ui/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/ui/Title.tsx -------------------------------------------------------------------------------- /app/components/work-section/FolioCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/work-section/FolioCard.tsx -------------------------------------------------------------------------------- /app/components/work-section/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/work-section/Tag.tsx -------------------------------------------------------------------------------- /app/components/work-section/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/work-section/Timeline.tsx -------------------------------------------------------------------------------- /app/components/work-section/TimelineItem.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/work-section/TimelineItem.module.css -------------------------------------------------------------------------------- /app/components/work-section/TimelineItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/work-section/TimelineItem.tsx -------------------------------------------------------------------------------- /app/components/work-section/Works.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/components/work-section/Works.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/icon.svg -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/app/page.tsx -------------------------------------------------------------------------------- /contexts/ViewContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/contexts/ViewContext.tsx -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/ade-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/ade-logo.svg -------------------------------------------------------------------------------- /public/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/black.png -------------------------------------------------------------------------------- /public/bluechip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/bluechip.svg -------------------------------------------------------------------------------- /public/hand-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/hand-wave.svg -------------------------------------------------------------------------------- /public/multistep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/multistep.svg -------------------------------------------------------------------------------- /public/nijasit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/nijasit.svg -------------------------------------------------------------------------------- /public/nnpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/nnpc.svg -------------------------------------------------------------------------------- /public/offset-folio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/offset-folio.svg -------------------------------------------------------------------------------- /public/pnf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/pnf.svg -------------------------------------------------------------------------------- /public/position-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/position-icon.svg -------------------------------------------------------------------------------- /public/quiklearn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/quiklearn.svg -------------------------------------------------------------------------------- /public/shortly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/shortly.svg -------------------------------------------------------------------------------- /public/smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/smile.svg -------------------------------------------------------------------------------- /public/todo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/todo.svg -------------------------------------------------------------------------------- /public/transparent-ade-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/transparent-ade-min.png -------------------------------------------------------------------------------- /public/transparent-ade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/transparent-ade.png -------------------------------------------------------------------------------- /public/witw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/public/witw.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/blobity.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adex-hub/ade-folio/HEAD/utils/blobity.config.ts --------------------------------------------------------------------------------