├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── index.html ├── package.json ├── postcss.config.cjs ├── public ├── anchor-right.svg ├── arrow-disabled.png ├── arrow-left-disabled.svg ├── arrow-left.svg ├── arrow-right-disabled.svg ├── arrow-right.svg ├── blog-1.png ├── blog-2.png ├── card-1.png ├── card-2.png ├── chair.png ├── chart.png ├── chart.svg ├── dot.svg ├── earn-1.svg ├── earn-2.svg ├── earn-3.svg ├── earn-4.svg ├── eclipse-1.svg ├── eclipse-2.svg ├── feature-1.svg ├── feature-2.svg ├── feature-3.svg ├── feature-4.svg ├── feature-5.svg ├── feature-6.svg ├── github.svg ├── hero.png ├── instagram.svg ├── linkedin.svg ├── profile-1.png ├── profile-2.png ├── profile-3.png ├── shopify-footer.png ├── shopify-header.png ├── shopify-main.png ├── shopify-meta.svg ├── telegram.svg ├── testimonial.png └── vite.svg ├── src ├── app.jsx ├── components │ ├── Atoms │ │ ├── button.jsx │ │ ├── paragraph.jsx │ │ ├── subhead.jsx │ │ └── subtitle.jsx │ ├── Banner │ │ └── index.jsx │ ├── Blog │ │ └── index.jsx │ ├── Card │ │ ├── cardImage.jsx │ │ ├── cardImages.jsx │ │ ├── cardItem.jsx │ │ ├── cardProfileList.jsx │ │ └── index.jsx │ ├── Features │ │ ├── featureItem.jsx │ │ └── index.jsx │ ├── Footer │ │ └── index.jsx │ ├── Hero │ │ └── index.jsx │ ├── Main │ │ └── index.jsx │ ├── Navbar │ │ ├── index.jsx │ │ └── navbarDropdown.jsx │ └── Testimonial │ │ ├── index.jsx │ │ └── testimonialItem.jsx ├── index.css └── main.jsx ├── tailwind.config.cjs └── vite.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/SECURITY.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/anchor-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/anchor-right.svg -------------------------------------------------------------------------------- /public/arrow-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/arrow-disabled.png -------------------------------------------------------------------------------- /public/arrow-left-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/arrow-left-disabled.svg -------------------------------------------------------------------------------- /public/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/arrow-left.svg -------------------------------------------------------------------------------- /public/arrow-right-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/arrow-right-disabled.svg -------------------------------------------------------------------------------- /public/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/arrow-right.svg -------------------------------------------------------------------------------- /public/blog-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/blog-1.png -------------------------------------------------------------------------------- /public/blog-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/blog-2.png -------------------------------------------------------------------------------- /public/card-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/card-1.png -------------------------------------------------------------------------------- /public/card-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/card-2.png -------------------------------------------------------------------------------- /public/chair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/chair.png -------------------------------------------------------------------------------- /public/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/chart.png -------------------------------------------------------------------------------- /public/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/chart.svg -------------------------------------------------------------------------------- /public/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/dot.svg -------------------------------------------------------------------------------- /public/earn-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/earn-1.svg -------------------------------------------------------------------------------- /public/earn-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/earn-2.svg -------------------------------------------------------------------------------- /public/earn-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/earn-3.svg -------------------------------------------------------------------------------- /public/earn-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/earn-4.svg -------------------------------------------------------------------------------- /public/eclipse-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/eclipse-1.svg -------------------------------------------------------------------------------- /public/eclipse-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/eclipse-2.svg -------------------------------------------------------------------------------- /public/feature-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/feature-1.svg -------------------------------------------------------------------------------- /public/feature-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/feature-2.svg -------------------------------------------------------------------------------- /public/feature-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/feature-3.svg -------------------------------------------------------------------------------- /public/feature-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/feature-4.svg -------------------------------------------------------------------------------- /public/feature-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/feature-5.svg -------------------------------------------------------------------------------- /public/feature-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/feature-6.svg -------------------------------------------------------------------------------- /public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/github.svg -------------------------------------------------------------------------------- /public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/hero.png -------------------------------------------------------------------------------- /public/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/instagram.svg -------------------------------------------------------------------------------- /public/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/linkedin.svg -------------------------------------------------------------------------------- /public/profile-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/profile-1.png -------------------------------------------------------------------------------- /public/profile-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/profile-2.png -------------------------------------------------------------------------------- /public/profile-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/profile-3.png -------------------------------------------------------------------------------- /public/shopify-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/shopify-footer.png -------------------------------------------------------------------------------- /public/shopify-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/shopify-header.png -------------------------------------------------------------------------------- /public/shopify-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/shopify-main.png -------------------------------------------------------------------------------- /public/shopify-meta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/shopify-meta.svg -------------------------------------------------------------------------------- /public/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/telegram.svg -------------------------------------------------------------------------------- /public/testimonial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/testimonial.png -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/app.jsx -------------------------------------------------------------------------------- /src/components/Atoms/button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Atoms/button.jsx -------------------------------------------------------------------------------- /src/components/Atoms/paragraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Atoms/paragraph.jsx -------------------------------------------------------------------------------- /src/components/Atoms/subhead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Atoms/subhead.jsx -------------------------------------------------------------------------------- /src/components/Atoms/subtitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Atoms/subtitle.jsx -------------------------------------------------------------------------------- /src/components/Banner/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Banner/index.jsx -------------------------------------------------------------------------------- /src/components/Blog/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Blog/index.jsx -------------------------------------------------------------------------------- /src/components/Card/cardImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Card/cardImage.jsx -------------------------------------------------------------------------------- /src/components/Card/cardImages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Card/cardImages.jsx -------------------------------------------------------------------------------- /src/components/Card/cardItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Card/cardItem.jsx -------------------------------------------------------------------------------- /src/components/Card/cardProfileList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Card/cardProfileList.jsx -------------------------------------------------------------------------------- /src/components/Card/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Card/index.jsx -------------------------------------------------------------------------------- /src/components/Features/featureItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Features/featureItem.jsx -------------------------------------------------------------------------------- /src/components/Features/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Features/index.jsx -------------------------------------------------------------------------------- /src/components/Footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Footer/index.jsx -------------------------------------------------------------------------------- /src/components/Hero/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Hero/index.jsx -------------------------------------------------------------------------------- /src/components/Main/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Main/index.jsx -------------------------------------------------------------------------------- /src/components/Navbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Navbar/index.jsx -------------------------------------------------------------------------------- /src/components/Navbar/navbarDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Navbar/navbarDropdown.jsx -------------------------------------------------------------------------------- /src/components/Testimonial/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Testimonial/index.jsx -------------------------------------------------------------------------------- /src/components/Testimonial/testimonialItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/components/Testimonial/testimonialItem.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/src/main.jsx -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berthutapea/react-shopify-landing/HEAD/vite.config.js --------------------------------------------------------------------------------