├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── font │ ├── AgeoPersonalUse-Bold.otf │ ├── AgeoPersonalUse-ExtraBold.otf │ ├── AgeoPersonalUse-Heavy.otf │ ├── AgeoPersonalUse-Light.otf │ ├── AgeoPersonalUse-Medium.otf │ ├── AgeoPersonalUse-SemiBold.otf │ ├── AgeoPersonalUse-Thin.otf │ └── AgeoPersonalUse.otf ├── images │ ├── arrow_purple_button.png │ ├── arrow_up.png │ ├── bottom_left_shape.png │ ├── box.png │ ├── chevron_down_inbox.png │ ├── chevron_up_inbox.png │ ├── damien.png │ ├── damien_2.png │ ├── damien_alt.png │ ├── damien_big_text.png │ ├── facebook_icon.png │ ├── few_legs_star.png │ ├── hamburger.png │ ├── hero.png │ ├── hero_marquee.png │ ├── hero_marquee_small.png │ ├── hero_small.png │ ├── instagram_icon.png │ ├── lady_1.png │ ├── lady_2.png │ ├── left_icon.png │ ├── legged_stars.png │ ├── legged_stars_gray.png │ ├── right_icon.png │ ├── stars.png │ ├── stylish_double_c.png │ ├── stylish_e.png │ ├── stylish_e_right.png │ ├── top_right_shape.png │ └── x_icon.png ├── next.svg └── vercel.svg ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── cards │ │ ├── AboutCard.tsx │ │ ├── PortfolioCard.tsx │ │ ├── ServiceCard.tsx │ │ └── TestimonialCard.tsx │ ├── common │ │ ├── Header.tsx │ │ ├── MainButton.tsx │ │ ├── NavBar.tsx │ │ └── Socials.tsx │ ├── sections │ │ ├── AboutSection.tsx │ │ ├── FaqSection.tsx │ │ ├── FooterSection.tsx │ │ ├── HeroSection.tsx │ │ ├── LargeTextSection.tsx │ │ ├── PortfolioSection.tsx │ │ ├── ServiceSection.tsx │ │ └── TestimonialSection.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── button.tsx │ │ └── separator.tsx └── lib │ ├── constant.ts │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/font/AgeoPersonalUse-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/font/AgeoPersonalUse-Bold.otf -------------------------------------------------------------------------------- /public/font/AgeoPersonalUse-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/font/AgeoPersonalUse-ExtraBold.otf -------------------------------------------------------------------------------- /public/font/AgeoPersonalUse-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/font/AgeoPersonalUse-Heavy.otf -------------------------------------------------------------------------------- /public/font/AgeoPersonalUse-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/font/AgeoPersonalUse-Light.otf -------------------------------------------------------------------------------- /public/font/AgeoPersonalUse-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/font/AgeoPersonalUse-Medium.otf -------------------------------------------------------------------------------- /public/font/AgeoPersonalUse-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/font/AgeoPersonalUse-SemiBold.otf -------------------------------------------------------------------------------- /public/font/AgeoPersonalUse-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/font/AgeoPersonalUse-Thin.otf -------------------------------------------------------------------------------- /public/font/AgeoPersonalUse.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/font/AgeoPersonalUse.otf -------------------------------------------------------------------------------- /public/images/arrow_purple_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/arrow_purple_button.png -------------------------------------------------------------------------------- /public/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/arrow_up.png -------------------------------------------------------------------------------- /public/images/bottom_left_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/bottom_left_shape.png -------------------------------------------------------------------------------- /public/images/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/box.png -------------------------------------------------------------------------------- /public/images/chevron_down_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/chevron_down_inbox.png -------------------------------------------------------------------------------- /public/images/chevron_up_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/chevron_up_inbox.png -------------------------------------------------------------------------------- /public/images/damien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/damien.png -------------------------------------------------------------------------------- /public/images/damien_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/damien_2.png -------------------------------------------------------------------------------- /public/images/damien_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/damien_alt.png -------------------------------------------------------------------------------- /public/images/damien_big_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/damien_big_text.png -------------------------------------------------------------------------------- /public/images/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/facebook_icon.png -------------------------------------------------------------------------------- /public/images/few_legs_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/few_legs_star.png -------------------------------------------------------------------------------- /public/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/hamburger.png -------------------------------------------------------------------------------- /public/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/hero.png -------------------------------------------------------------------------------- /public/images/hero_marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/hero_marquee.png -------------------------------------------------------------------------------- /public/images/hero_marquee_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/hero_marquee_small.png -------------------------------------------------------------------------------- /public/images/hero_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/hero_small.png -------------------------------------------------------------------------------- /public/images/instagram_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/instagram_icon.png -------------------------------------------------------------------------------- /public/images/lady_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/lady_1.png -------------------------------------------------------------------------------- /public/images/lady_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/lady_2.png -------------------------------------------------------------------------------- /public/images/left_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/left_icon.png -------------------------------------------------------------------------------- /public/images/legged_stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/legged_stars.png -------------------------------------------------------------------------------- /public/images/legged_stars_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/legged_stars_gray.png -------------------------------------------------------------------------------- /public/images/right_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/right_icon.png -------------------------------------------------------------------------------- /public/images/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/stars.png -------------------------------------------------------------------------------- /public/images/stylish_double_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/stylish_double_c.png -------------------------------------------------------------------------------- /public/images/stylish_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/stylish_e.png -------------------------------------------------------------------------------- /public/images/stylish_e_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/stylish_e_right.png -------------------------------------------------------------------------------- /public/images/top_right_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/top_right_shape.png -------------------------------------------------------------------------------- /public/images/x_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/images/x_icon.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/cards/AboutCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/cards/AboutCard.tsx -------------------------------------------------------------------------------- /src/components/cards/PortfolioCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/cards/PortfolioCard.tsx -------------------------------------------------------------------------------- /src/components/cards/ServiceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/cards/ServiceCard.tsx -------------------------------------------------------------------------------- /src/components/cards/TestimonialCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/cards/TestimonialCard.tsx -------------------------------------------------------------------------------- /src/components/common/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/common/Header.tsx -------------------------------------------------------------------------------- /src/components/common/MainButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/common/MainButton.tsx -------------------------------------------------------------------------------- /src/components/common/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/common/NavBar.tsx -------------------------------------------------------------------------------- /src/components/common/Socials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/common/Socials.tsx -------------------------------------------------------------------------------- /src/components/sections/AboutSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/sections/AboutSection.tsx -------------------------------------------------------------------------------- /src/components/sections/FaqSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/sections/FaqSection.tsx -------------------------------------------------------------------------------- /src/components/sections/FooterSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/sections/FooterSection.tsx -------------------------------------------------------------------------------- /src/components/sections/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/sections/HeroSection.tsx -------------------------------------------------------------------------------- /src/components/sections/LargeTextSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/sections/LargeTextSection.tsx -------------------------------------------------------------------------------- /src/components/sections/PortfolioSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/sections/PortfolioSection.tsx -------------------------------------------------------------------------------- /src/components/sections/ServiceSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/sections/ServiceSection.tsx -------------------------------------------------------------------------------- /src/components/sections/TestimonialSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/sections/TestimonialSection.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/lib/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/lib/constant.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/photography-portfolio-website/HEAD/tsconfig.json --------------------------------------------------------------------------------