├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.cjs ├── public ├── _redirects ├── assets │ ├── documents │ │ ├── Green Planet Eco - Credit Carbon.pdf │ │ └── WHITEPAPER- Green Planet Eco.pdf │ └── images │ │ ├── avatar_testimonials.jpg │ │ ├── bg_page_title.jpg │ │ ├── bg_testimonials.jpg │ │ ├── bg_who_we_are.jpg │ │ ├── buy_eco_token.png │ │ ├── campaign_animals.jpg │ │ ├── campaign_communities.jpg │ │ ├── campaign_ocean.jpg │ │ ├── campaign_recycling.jpg │ │ ├── campaign_reforestation.jpg │ │ ├── campaign_water.jpg │ │ ├── certificate.png │ │ ├── children.jpg │ │ ├── fan-base.png │ │ ├── fan.png │ │ ├── green_car.png │ │ ├── green_earth.png │ │ ├── green_eco.png │ │ ├── green_electricity.png │ │ ├── green_elephant.png │ │ ├── green_recycle.png │ │ ├── green_solar.png │ │ ├── green_tree.png │ │ ├── green_water.png │ │ ├── green_wind.png │ │ ├── hero.jpg │ │ ├── hero_donate.png │ │ ├── hero_medal.png │ │ ├── hero_torch.png │ │ ├── history.jpg │ │ ├── learn_forest.jpg │ │ ├── learn_recycling.jpg │ │ ├── learn_reforestation.jpg │ │ ├── learn_solar.jpg │ │ ├── learn_water.jpg │ │ ├── learn_wind.jpg │ │ ├── logo_dark.png │ │ ├── logo_seo.jpg │ │ ├── logo_white.png │ │ ├── news_animals.jpg │ │ ├── news_app_1.jpg │ │ ├── news_app_2.jpg │ │ ├── news_app_3.jpg │ │ ├── news_app_4.jpg │ │ ├── news_app_5.jpg │ │ ├── news_app_6.jpg │ │ ├── news_logo_btc.png │ │ ├── news_logo_coincodex.png │ │ ├── news_logo_coinpedia.png │ │ ├── news_logo_coinsniper.png │ │ ├── news_logo_cointelegraph.png │ │ ├── news_logo_icoholder.png │ │ ├── news_logo_iconlink.png │ │ ├── news_logo_medium.png │ │ ├── news_logo_oneplanet.png │ │ ├── news_logo_steemit.png │ │ ├── solar_panels.jpg │ │ ├── team_ceo.jpg │ │ ├── team_md.jpg │ │ ├── team_mm.jpg │ │ ├── team_pm.jpg │ │ ├── team_sd.jpg │ │ ├── token_mark.png │ │ ├── tokenomics.jpg │ │ ├── white_elephant.png │ │ ├── white_solar.png │ │ ├── white_tree.png │ │ ├── white_water.png │ │ ├── who_we_are_donate.png │ │ ├── who_we_are_medal.png │ │ └── who_we_are_torch.png └── token_mark.png ├── readme_images ├── guide-site.png └── guide-terminal.png ├── src ├── App.tsx ├── Routes.tsx ├── components │ ├── AlertMessage.tsx │ ├── Container.tsx │ ├── CustomDialogHeader.tsx │ ├── Input.tsx │ ├── Loading.tsx │ ├── MotionDiv.tsx │ ├── PageTitle.tsx │ ├── ProfileCard.tsx │ └── TinyDashedBar.tsx ├── contexts │ ├── AffiliateContext.tsx │ ├── AlertMessageContext.tsx │ ├── LoadingContext.tsx │ └── MobileMenuContext.tsx ├── hooks │ ├── useAffililate.tsx │ ├── useAlertMessage.tsx │ ├── useLoading.ts │ └── useMobileMenu.ts ├── index.css ├── layouts │ └── LandingLayout │ │ ├── Footer.tsx │ │ ├── Navbar.tsx │ │ └── index.tsx ├── main.tsx ├── pages │ ├── CarbonCreditPage │ │ └── index.tsx │ ├── ContactUsPage │ │ └── index.tsx │ ├── HomePage │ │ ├── AboutSection │ │ │ ├── NewsBar.tsx │ │ │ └── index.tsx │ │ ├── HeroSection │ │ │ ├── DialogAffiliate.tsx │ │ │ ├── DialogTokenSale.tsx │ │ │ ├── DialogTokenSaleForPartners.tsx │ │ │ ├── Slider1.tsx │ │ │ ├── Slider2.tsx │ │ │ ├── ThreeBlocks.tsx │ │ │ └── index.tsx │ │ ├── TestimonialsSection.tsx │ │ ├── ValuesSection.tsx │ │ ├── VisionSection.tsx │ │ ├── WhitepaperSection.tsx │ │ └── index.tsx │ ├── LearnItemPage │ │ ├── BenefitItem.tsx │ │ ├── SideLearnNav.tsx │ │ └── index.tsx │ ├── LearnPage │ │ ├── LearnItem.tsx │ │ └── index.tsx │ ├── NewsPage │ │ ├── NewsCard.tsx │ │ └── index.tsx │ ├── NoPage.tsx │ ├── PortfolioPage │ │ └── index.tsx │ └── about │ │ ├── CampaignPage │ │ ├── CardInGrid.tsx │ │ └── index.tsx │ │ ├── CompanyHistoryPage │ │ ├── HistorySection.tsx │ │ ├── TimelineSection.tsx │ │ └── index.tsx │ │ ├── FaqPage │ │ ├── AccordionItem.tsx │ │ └── index.tsx │ │ ├── OurTeamPage.tsx │ │ ├── TestimonialsPage │ │ ├── TestimonialItem.tsx │ │ └── index.tsx │ │ ├── TokenPage.tsx │ │ └── WhoWeArePage.tsx ├── utils │ ├── alovaInstances.ts │ ├── api.ts │ ├── constants.ts │ ├── functions.ts │ ├── interfaces.ts │ └── types.ts └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/assets/documents/Green Planet Eco - Credit Carbon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/documents/Green Planet Eco - Credit Carbon.pdf -------------------------------------------------------------------------------- /public/assets/documents/WHITEPAPER- Green Planet Eco.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/documents/WHITEPAPER- Green Planet Eco.pdf -------------------------------------------------------------------------------- /public/assets/images/avatar_testimonials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/avatar_testimonials.jpg -------------------------------------------------------------------------------- /public/assets/images/bg_page_title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/bg_page_title.jpg -------------------------------------------------------------------------------- /public/assets/images/bg_testimonials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/bg_testimonials.jpg -------------------------------------------------------------------------------- /public/assets/images/bg_who_we_are.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/bg_who_we_are.jpg -------------------------------------------------------------------------------- /public/assets/images/buy_eco_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/buy_eco_token.png -------------------------------------------------------------------------------- /public/assets/images/campaign_animals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/campaign_animals.jpg -------------------------------------------------------------------------------- /public/assets/images/campaign_communities.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/campaign_communities.jpg -------------------------------------------------------------------------------- /public/assets/images/campaign_ocean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/campaign_ocean.jpg -------------------------------------------------------------------------------- /public/assets/images/campaign_recycling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/campaign_recycling.jpg -------------------------------------------------------------------------------- /public/assets/images/campaign_reforestation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/campaign_reforestation.jpg -------------------------------------------------------------------------------- /public/assets/images/campaign_water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/campaign_water.jpg -------------------------------------------------------------------------------- /public/assets/images/certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/certificate.png -------------------------------------------------------------------------------- /public/assets/images/children.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/children.jpg -------------------------------------------------------------------------------- /public/assets/images/fan-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/fan-base.png -------------------------------------------------------------------------------- /public/assets/images/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/fan.png -------------------------------------------------------------------------------- /public/assets/images/green_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/green_car.png -------------------------------------------------------------------------------- /public/assets/images/green_earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/green_earth.png -------------------------------------------------------------------------------- /public/assets/images/green_eco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/green_eco.png -------------------------------------------------------------------------------- /public/assets/images/green_electricity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/green_electricity.png -------------------------------------------------------------------------------- /public/assets/images/green_elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/green_elephant.png -------------------------------------------------------------------------------- /public/assets/images/green_recycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/green_recycle.png -------------------------------------------------------------------------------- /public/assets/images/green_solar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/green_solar.png -------------------------------------------------------------------------------- /public/assets/images/green_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/green_tree.png -------------------------------------------------------------------------------- /public/assets/images/green_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/green_water.png -------------------------------------------------------------------------------- /public/assets/images/green_wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/green_wind.png -------------------------------------------------------------------------------- /public/assets/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/hero.jpg -------------------------------------------------------------------------------- /public/assets/images/hero_donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/hero_donate.png -------------------------------------------------------------------------------- /public/assets/images/hero_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/hero_medal.png -------------------------------------------------------------------------------- /public/assets/images/hero_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/hero_torch.png -------------------------------------------------------------------------------- /public/assets/images/history.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/history.jpg -------------------------------------------------------------------------------- /public/assets/images/learn_forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/learn_forest.jpg -------------------------------------------------------------------------------- /public/assets/images/learn_recycling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/learn_recycling.jpg -------------------------------------------------------------------------------- /public/assets/images/learn_reforestation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/learn_reforestation.jpg -------------------------------------------------------------------------------- /public/assets/images/learn_solar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/learn_solar.jpg -------------------------------------------------------------------------------- /public/assets/images/learn_water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/learn_water.jpg -------------------------------------------------------------------------------- /public/assets/images/learn_wind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/learn_wind.jpg -------------------------------------------------------------------------------- /public/assets/images/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/logo_dark.png -------------------------------------------------------------------------------- /public/assets/images/logo_seo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/logo_seo.jpg -------------------------------------------------------------------------------- /public/assets/images/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/logo_white.png -------------------------------------------------------------------------------- /public/assets/images/news_animals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_animals.jpg -------------------------------------------------------------------------------- /public/assets/images/news_app_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_app_1.jpg -------------------------------------------------------------------------------- /public/assets/images/news_app_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_app_2.jpg -------------------------------------------------------------------------------- /public/assets/images/news_app_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_app_3.jpg -------------------------------------------------------------------------------- /public/assets/images/news_app_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_app_4.jpg -------------------------------------------------------------------------------- /public/assets/images/news_app_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_app_5.jpg -------------------------------------------------------------------------------- /public/assets/images/news_app_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_app_6.jpg -------------------------------------------------------------------------------- /public/assets/images/news_logo_btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_logo_btc.png -------------------------------------------------------------------------------- /public/assets/images/news_logo_coincodex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_logo_coincodex.png -------------------------------------------------------------------------------- /public/assets/images/news_logo_coinpedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_logo_coinpedia.png -------------------------------------------------------------------------------- /public/assets/images/news_logo_coinsniper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_logo_coinsniper.png -------------------------------------------------------------------------------- /public/assets/images/news_logo_cointelegraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_logo_cointelegraph.png -------------------------------------------------------------------------------- /public/assets/images/news_logo_icoholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_logo_icoholder.png -------------------------------------------------------------------------------- /public/assets/images/news_logo_iconlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_logo_iconlink.png -------------------------------------------------------------------------------- /public/assets/images/news_logo_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_logo_medium.png -------------------------------------------------------------------------------- /public/assets/images/news_logo_oneplanet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_logo_oneplanet.png -------------------------------------------------------------------------------- /public/assets/images/news_logo_steemit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/news_logo_steemit.png -------------------------------------------------------------------------------- /public/assets/images/solar_panels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/solar_panels.jpg -------------------------------------------------------------------------------- /public/assets/images/team_ceo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/team_ceo.jpg -------------------------------------------------------------------------------- /public/assets/images/team_md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/team_md.jpg -------------------------------------------------------------------------------- /public/assets/images/team_mm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/team_mm.jpg -------------------------------------------------------------------------------- /public/assets/images/team_pm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/team_pm.jpg -------------------------------------------------------------------------------- /public/assets/images/team_sd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/team_sd.jpg -------------------------------------------------------------------------------- /public/assets/images/token_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/token_mark.png -------------------------------------------------------------------------------- /public/assets/images/tokenomics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/tokenomics.jpg -------------------------------------------------------------------------------- /public/assets/images/white_elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/white_elephant.png -------------------------------------------------------------------------------- /public/assets/images/white_solar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/white_solar.png -------------------------------------------------------------------------------- /public/assets/images/white_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/white_tree.png -------------------------------------------------------------------------------- /public/assets/images/white_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/white_water.png -------------------------------------------------------------------------------- /public/assets/images/who_we_are_donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/who_we_are_donate.png -------------------------------------------------------------------------------- /public/assets/images/who_we_are_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/who_we_are_medal.png -------------------------------------------------------------------------------- /public/assets/images/who_we_are_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/assets/images/who_we_are_torch.png -------------------------------------------------------------------------------- /public/token_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/public/token_mark.png -------------------------------------------------------------------------------- /readme_images/guide-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/readme_images/guide-site.png -------------------------------------------------------------------------------- /readme_images/guide-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/readme_images/guide-terminal.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/Routes.tsx -------------------------------------------------------------------------------- /src/components/AlertMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/components/AlertMessage.tsx -------------------------------------------------------------------------------- /src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/components/Container.tsx -------------------------------------------------------------------------------- /src/components/CustomDialogHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/components/CustomDialogHeader.tsx -------------------------------------------------------------------------------- /src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/components/Input.tsx -------------------------------------------------------------------------------- /src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/components/Loading.tsx -------------------------------------------------------------------------------- /src/components/MotionDiv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/components/MotionDiv.tsx -------------------------------------------------------------------------------- /src/components/PageTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/components/PageTitle.tsx -------------------------------------------------------------------------------- /src/components/ProfileCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/components/ProfileCard.tsx -------------------------------------------------------------------------------- /src/components/TinyDashedBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/components/TinyDashedBar.tsx -------------------------------------------------------------------------------- /src/contexts/AffiliateContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/contexts/AffiliateContext.tsx -------------------------------------------------------------------------------- /src/contexts/AlertMessageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/contexts/AlertMessageContext.tsx -------------------------------------------------------------------------------- /src/contexts/LoadingContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/contexts/LoadingContext.tsx -------------------------------------------------------------------------------- /src/contexts/MobileMenuContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/contexts/MobileMenuContext.tsx -------------------------------------------------------------------------------- /src/hooks/useAffililate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/hooks/useAffililate.tsx -------------------------------------------------------------------------------- /src/hooks/useAlertMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/hooks/useAlertMessage.tsx -------------------------------------------------------------------------------- /src/hooks/useLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/hooks/useLoading.ts -------------------------------------------------------------------------------- /src/hooks/useMobileMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/hooks/useMobileMenu.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/layouts/LandingLayout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/layouts/LandingLayout/Footer.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/layouts/LandingLayout/Navbar.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/layouts/LandingLayout/index.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/CarbonCreditPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/CarbonCreditPage/index.tsx -------------------------------------------------------------------------------- /src/pages/ContactUsPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/ContactUsPage/index.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/AboutSection/NewsBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/AboutSection/NewsBar.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/AboutSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/AboutSection/index.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HeroSection/DialogAffiliate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/HeroSection/DialogAffiliate.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HeroSection/DialogTokenSale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/HeroSection/DialogTokenSale.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HeroSection/DialogTokenSaleForPartners.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/HeroSection/DialogTokenSaleForPartners.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HeroSection/Slider1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/HeroSection/Slider1.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HeroSection/Slider2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/HeroSection/Slider2.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HeroSection/ThreeBlocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/HeroSection/ThreeBlocks.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HeroSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/HeroSection/index.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/TestimonialsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/TestimonialsSection.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/ValuesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/ValuesSection.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/VisionSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/VisionSection.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/WhitepaperSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/WhitepaperSection.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/HomePage/index.tsx -------------------------------------------------------------------------------- /src/pages/LearnItemPage/BenefitItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/LearnItemPage/BenefitItem.tsx -------------------------------------------------------------------------------- /src/pages/LearnItemPage/SideLearnNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/LearnItemPage/SideLearnNav.tsx -------------------------------------------------------------------------------- /src/pages/LearnItemPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/LearnItemPage/index.tsx -------------------------------------------------------------------------------- /src/pages/LearnPage/LearnItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/LearnPage/LearnItem.tsx -------------------------------------------------------------------------------- /src/pages/LearnPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/LearnPage/index.tsx -------------------------------------------------------------------------------- /src/pages/NewsPage/NewsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/NewsPage/NewsCard.tsx -------------------------------------------------------------------------------- /src/pages/NewsPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/NewsPage/index.tsx -------------------------------------------------------------------------------- /src/pages/NoPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/NoPage.tsx -------------------------------------------------------------------------------- /src/pages/PortfolioPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/PortfolioPage/index.tsx -------------------------------------------------------------------------------- /src/pages/about/CampaignPage/CardInGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/CampaignPage/CardInGrid.tsx -------------------------------------------------------------------------------- /src/pages/about/CampaignPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/CampaignPage/index.tsx -------------------------------------------------------------------------------- /src/pages/about/CompanyHistoryPage/HistorySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/CompanyHistoryPage/HistorySection.tsx -------------------------------------------------------------------------------- /src/pages/about/CompanyHistoryPage/TimelineSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/CompanyHistoryPage/TimelineSection.tsx -------------------------------------------------------------------------------- /src/pages/about/CompanyHistoryPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/CompanyHistoryPage/index.tsx -------------------------------------------------------------------------------- /src/pages/about/FaqPage/AccordionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/FaqPage/AccordionItem.tsx -------------------------------------------------------------------------------- /src/pages/about/FaqPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/FaqPage/index.tsx -------------------------------------------------------------------------------- /src/pages/about/OurTeamPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/OurTeamPage.tsx -------------------------------------------------------------------------------- /src/pages/about/TestimonialsPage/TestimonialItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/TestimonialsPage/TestimonialItem.tsx -------------------------------------------------------------------------------- /src/pages/about/TestimonialsPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/TestimonialsPage/index.tsx -------------------------------------------------------------------------------- /src/pages/about/TokenPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/TokenPage.tsx -------------------------------------------------------------------------------- /src/pages/about/WhoWeArePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/pages/about/WhoWeArePage.tsx -------------------------------------------------------------------------------- /src/utils/alovaInstances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/utils/alovaInstances.ts -------------------------------------------------------------------------------- /src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/utils/api.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/utils/functions.ts -------------------------------------------------------------------------------- /src/utils/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/utils/interfaces.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dejan-Teofilovic/green-planet-eco-frontend/HEAD/vite.config.ts --------------------------------------------------------------------------------