├── .gitignore ├── .npmrc ├── README.md ├── app.vue ├── assets └── css │ └── app.css ├── components ├── AppFooter.vue ├── AppHeader.vue ├── atoms │ ├── Container.vue │ ├── LinkBtn.vue │ ├── NavLink.vue │ ├── SwiperNavButton.vue │ └── Title.vue ├── blocks │ └── FooterNavBlock.vue ├── cards │ ├── KeyBenefit.vue │ ├── PodCast.vue │ └── RecentPod.vue ├── elements │ ├── DropDown.vue │ ├── ThemeSwitcher.vue │ └── icons │ │ ├── Dark.vue │ │ ├── Light.vue │ │ └── System.vue ├── icons │ ├── AppLogo.vue │ ├── NextIco.vue │ └── PrevIco.vue └── sections │ ├── AboutPodux.vue │ ├── CallToAction.vue │ ├── WhyUs.vue │ └── home │ ├── HeroSection.vue │ ├── LatestPodcast.vue │ └── PopularPodcasts.vue ├── layouts └── default.vue ├── nuxt.config.ts ├── package.json ├── pages └── index.vue ├── public ├── images │ ├── concentrated-young-african-american.webp │ ├── podCast.webp │ └── sidebiew.webp ├── logo.png ├── logoPodux.png └── screens │ ├── mobileViewDark.jpg │ ├── podux-dark.png │ └── podux-light.png ├── tailwind.config.cjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/app.vue -------------------------------------------------------------------------------- /assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/assets/css/app.css -------------------------------------------------------------------------------- /components/AppFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/AppFooter.vue -------------------------------------------------------------------------------- /components/AppHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/AppHeader.vue -------------------------------------------------------------------------------- /components/atoms/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/atoms/Container.vue -------------------------------------------------------------------------------- /components/atoms/LinkBtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/atoms/LinkBtn.vue -------------------------------------------------------------------------------- /components/atoms/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/atoms/NavLink.vue -------------------------------------------------------------------------------- /components/atoms/SwiperNavButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/atoms/SwiperNavButton.vue -------------------------------------------------------------------------------- /components/atoms/Title.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/atoms/Title.vue -------------------------------------------------------------------------------- /components/blocks/FooterNavBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/blocks/FooterNavBlock.vue -------------------------------------------------------------------------------- /components/cards/KeyBenefit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/cards/KeyBenefit.vue -------------------------------------------------------------------------------- /components/cards/PodCast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/cards/PodCast.vue -------------------------------------------------------------------------------- /components/cards/RecentPod.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/cards/RecentPod.vue -------------------------------------------------------------------------------- /components/elements/DropDown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/elements/DropDown.vue -------------------------------------------------------------------------------- /components/elements/ThemeSwitcher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/elements/ThemeSwitcher.vue -------------------------------------------------------------------------------- /components/elements/icons/Dark.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/elements/icons/Dark.vue -------------------------------------------------------------------------------- /components/elements/icons/Light.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/elements/icons/Light.vue -------------------------------------------------------------------------------- /components/elements/icons/System.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/elements/icons/System.vue -------------------------------------------------------------------------------- /components/icons/AppLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/icons/AppLogo.vue -------------------------------------------------------------------------------- /components/icons/NextIco.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/icons/NextIco.vue -------------------------------------------------------------------------------- /components/icons/PrevIco.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/icons/PrevIco.vue -------------------------------------------------------------------------------- /components/sections/AboutPodux.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/sections/AboutPodux.vue -------------------------------------------------------------------------------- /components/sections/CallToAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/sections/CallToAction.vue -------------------------------------------------------------------------------- /components/sections/WhyUs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/sections/WhyUs.vue -------------------------------------------------------------------------------- /components/sections/home/HeroSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/sections/home/HeroSection.vue -------------------------------------------------------------------------------- /components/sections/home/LatestPodcast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/sections/home/LatestPodcast.vue -------------------------------------------------------------------------------- /components/sections/home/PopularPodcasts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/components/sections/home/PopularPodcasts.vue -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/pages/index.vue -------------------------------------------------------------------------------- /public/images/concentrated-young-african-american.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/public/images/concentrated-young-african-american.webp -------------------------------------------------------------------------------- /public/images/podCast.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/public/images/podCast.webp -------------------------------------------------------------------------------- /public/images/sidebiew.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/public/images/sidebiew.webp -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logoPodux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/public/logoPodux.png -------------------------------------------------------------------------------- /public/screens/mobileViewDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/public/screens/mobileViewDark.jpg -------------------------------------------------------------------------------- /public/screens/podux-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/public/screens/podux-dark.png -------------------------------------------------------------------------------- /public/screens/podux-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/public/screens/podux-light.png -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Johnkat-Mj/podcas-landing-page/HEAD/tsconfig.json --------------------------------------------------------------------------------