├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── public ├── images │ ├── about-img.webp │ ├── hero-img.webp │ ├── menu │ │ ├── matcha.jpg │ │ ├── nutella.jpg │ │ ├── oreo.jpg │ │ ├── soon.png │ │ ├── strawberry.jpg │ │ └── tiramisu.jpg │ └── order-img.webp └── logo.png ├── src ├── Components │ ├── Elements │ │ ├── Button.jsx │ │ ├── Navbar │ │ │ ├── DesktopNav.jsx │ │ │ └── MobileNav.jsx │ │ ├── SectionTitle.jsx │ │ └── Services.jsx │ ├── Fragments │ │ ├── CardMenu.jsx │ │ ├── CardService.jsx │ │ ├── ContactOrder.jsx │ │ ├── Navbar.jsx │ │ └── SocialIcons.jsx │ └── Layouts │ │ ├── AboutSection.jsx │ │ ├── HeroSection.jsx │ │ ├── MenuSection.jsx │ │ └── ServiceSection.jsx ├── index.css └── main.jsx ├── tailwind.config.js └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/images/about-img.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/public/images/about-img.webp -------------------------------------------------------------------------------- /public/images/hero-img.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/public/images/hero-img.webp -------------------------------------------------------------------------------- /public/images/menu/matcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/public/images/menu/matcha.jpg -------------------------------------------------------------------------------- /public/images/menu/nutella.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/public/images/menu/nutella.jpg -------------------------------------------------------------------------------- /public/images/menu/oreo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/public/images/menu/oreo.jpg -------------------------------------------------------------------------------- /public/images/menu/soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/public/images/menu/soon.png -------------------------------------------------------------------------------- /public/images/menu/strawberry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/public/images/menu/strawberry.jpg -------------------------------------------------------------------------------- /public/images/menu/tiramisu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/public/images/menu/tiramisu.jpg -------------------------------------------------------------------------------- /public/images/order-img.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/public/images/order-img.webp -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/public/logo.png -------------------------------------------------------------------------------- /src/Components/Elements/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Elements/Button.jsx -------------------------------------------------------------------------------- /src/Components/Elements/Navbar/DesktopNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Elements/Navbar/DesktopNav.jsx -------------------------------------------------------------------------------- /src/Components/Elements/Navbar/MobileNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Elements/Navbar/MobileNav.jsx -------------------------------------------------------------------------------- /src/Components/Elements/SectionTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Elements/SectionTitle.jsx -------------------------------------------------------------------------------- /src/Components/Elements/Services.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Elements/Services.jsx -------------------------------------------------------------------------------- /src/Components/Fragments/CardMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Fragments/CardMenu.jsx -------------------------------------------------------------------------------- /src/Components/Fragments/CardService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Fragments/CardService.jsx -------------------------------------------------------------------------------- /src/Components/Fragments/ContactOrder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Fragments/ContactOrder.jsx -------------------------------------------------------------------------------- /src/Components/Fragments/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Fragments/Navbar.jsx -------------------------------------------------------------------------------- /src/Components/Fragments/SocialIcons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Fragments/SocialIcons.jsx -------------------------------------------------------------------------------- /src/Components/Layouts/AboutSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Layouts/AboutSection.jsx -------------------------------------------------------------------------------- /src/Components/Layouts/HeroSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Layouts/HeroSection.jsx -------------------------------------------------------------------------------- /src/Components/Layouts/MenuSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Layouts/MenuSection.jsx -------------------------------------------------------------------------------- /src/Components/Layouts/ServiceSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/Components/Layouts/ServiceSection.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/src/main.jsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeruAzyy/zia-bakery/HEAD/vite.config.js --------------------------------------------------------------------------------