├── .github └── workflows │ └── jekyll-gh-pages.yml ├── .gitignore ├── README.md ├── dist ├── assets │ ├── about-me.412264fb.jpg │ ├── background-image.4ed6e9de.jpg │ ├── index.24999a1a.css │ ├── index.4e137e0b.js │ ├── logo.2ed925de.png │ ├── offert-photo01.33397179.jpg │ ├── offert-photo02.1a6799d1.jpg │ └── offert-photo03.1515f31a.jpg ├── index.html └── vite.svg ├── index.html ├── package.json ├── public └── vite.svg ├── screenshots ├── screenshot01.jpg ├── screenshot02.jpg ├── screenshot03.jpg ├── screenshot04.jpg └── screenshot05.jpg ├── src ├── App.jsx ├── components │ ├── about │ │ ├── About.jsx │ │ └── AboutStyle.jsx │ ├── common │ │ └── CurrentYear.jsx │ ├── contact │ │ ├── Contact.jsx │ │ └── ContactStyle.jsx │ ├── footer │ │ ├── Footer.jsx │ │ └── FooterStyle.jsx │ ├── gallery │ │ ├── Gallery.jsx │ │ ├── GalleryStyle.jsx │ │ └── SwiperGallery.jsx │ ├── header │ │ ├── Header.jsx │ │ └── HeaderStyle.jsx │ ├── hero │ │ ├── Hero.jsx │ │ └── HeroStyle.jsx │ ├── offert │ │ ├── Card │ │ │ ├── Card.jsx │ │ │ └── CardStyle.jsx │ │ ├── Offert.jsx │ │ └── OffertStyle.jsx │ └── pricelist │ │ ├── Pricelist.jsx │ │ └── PricelistStyle.jsx ├── img │ ├── about │ │ └── about-me.jpg │ ├── background-image.jpg │ ├── logo.png │ └── offert │ │ ├── offert-photo01.jpg │ │ ├── offert-photo02.jpg │ │ └── offert-photo03.jpg ├── main.jsx ├── pages │ └── home │ │ ├── Home.jsx │ │ └── HomeStyle.jsx └── styles │ └── GlobalStyle.jsx └── vite.config.js /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/README.md -------------------------------------------------------------------------------- /dist/assets/about-me.412264fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/dist/assets/about-me.412264fb.jpg -------------------------------------------------------------------------------- /dist/assets/background-image.4ed6e9de.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/dist/assets/background-image.4ed6e9de.jpg -------------------------------------------------------------------------------- /dist/assets/index.24999a1a.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/dist/assets/index.24999a1a.css -------------------------------------------------------------------------------- /dist/assets/index.4e137e0b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/dist/assets/index.4e137e0b.js -------------------------------------------------------------------------------- /dist/assets/logo.2ed925de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/dist/assets/logo.2ed925de.png -------------------------------------------------------------------------------- /dist/assets/offert-photo01.33397179.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/dist/assets/offert-photo01.33397179.jpg -------------------------------------------------------------------------------- /dist/assets/offert-photo02.1a6799d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/dist/assets/offert-photo02.1a6799d1.jpg -------------------------------------------------------------------------------- /dist/assets/offert-photo03.1515f31a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/dist/assets/offert-photo03.1515f31a.jpg -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/dist/vite.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/public/vite.svg -------------------------------------------------------------------------------- /screenshots/screenshot01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/screenshots/screenshot01.jpg -------------------------------------------------------------------------------- /screenshots/screenshot02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/screenshots/screenshot02.jpg -------------------------------------------------------------------------------- /screenshots/screenshot03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/screenshots/screenshot03.jpg -------------------------------------------------------------------------------- /screenshots/screenshot04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/screenshots/screenshot04.jpg -------------------------------------------------------------------------------- /screenshots/screenshot05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/screenshots/screenshot05.jpg -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/about/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/about/About.jsx -------------------------------------------------------------------------------- /src/components/about/AboutStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/about/AboutStyle.jsx -------------------------------------------------------------------------------- /src/components/common/CurrentYear.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/common/CurrentYear.jsx -------------------------------------------------------------------------------- /src/components/contact/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/contact/Contact.jsx -------------------------------------------------------------------------------- /src/components/contact/ContactStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/contact/ContactStyle.jsx -------------------------------------------------------------------------------- /src/components/footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/footer/FooterStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/footer/FooterStyle.jsx -------------------------------------------------------------------------------- /src/components/gallery/Gallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/gallery/Gallery.jsx -------------------------------------------------------------------------------- /src/components/gallery/GalleryStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/gallery/GalleryStyle.jsx -------------------------------------------------------------------------------- /src/components/gallery/SwiperGallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/gallery/SwiperGallery.jsx -------------------------------------------------------------------------------- /src/components/header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/header/Header.jsx -------------------------------------------------------------------------------- /src/components/header/HeaderStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/header/HeaderStyle.jsx -------------------------------------------------------------------------------- /src/components/hero/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/hero/Hero.jsx -------------------------------------------------------------------------------- /src/components/hero/HeroStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/hero/HeroStyle.jsx -------------------------------------------------------------------------------- /src/components/offert/Card/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/offert/Card/Card.jsx -------------------------------------------------------------------------------- /src/components/offert/Card/CardStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/offert/Card/CardStyle.jsx -------------------------------------------------------------------------------- /src/components/offert/Offert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/offert/Offert.jsx -------------------------------------------------------------------------------- /src/components/offert/OffertStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/offert/OffertStyle.jsx -------------------------------------------------------------------------------- /src/components/pricelist/Pricelist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/pricelist/Pricelist.jsx -------------------------------------------------------------------------------- /src/components/pricelist/PricelistStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/components/pricelist/PricelistStyle.jsx -------------------------------------------------------------------------------- /src/img/about/about-me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/img/about/about-me.jpg -------------------------------------------------------------------------------- /src/img/background-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/img/background-image.jpg -------------------------------------------------------------------------------- /src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/img/logo.png -------------------------------------------------------------------------------- /src/img/offert/offert-photo01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/img/offert/offert-photo01.jpg -------------------------------------------------------------------------------- /src/img/offert/offert-photo02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/img/offert/offert-photo02.jpg -------------------------------------------------------------------------------- /src/img/offert/offert-photo03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/img/offert/offert-photo03.jpg -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/pages/home/Home.jsx -------------------------------------------------------------------------------- /src/pages/home/HomeStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/pages/home/HomeStyle.jsx -------------------------------------------------------------------------------- /src/styles/GlobalStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/src/styles/GlobalStyle.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlancer0328/PhotographersLandingPage/HEAD/vite.config.js --------------------------------------------------------------------------------