├── .github └── workflows │ ├── deploy.yml │ └── main.yml ├── .gitignore ├── CHANGELOG.MD ├── README.md ├── assets ├── css │ ├── input.css │ └── material-tailwind.css ├── js │ └── astro-ecommerce.min.js └── scss │ └── loading-dot.css ├── astro.config.mjs ├── hooks ├── interaction │ └── useApiQuery.tsx └── tools │ ├── copyToClipboard.tsx │ └── useEffectOnlyOnUpdate.tsx ├── package.json ├── public ├── 404.jpg ├── aboutus.jpg ├── astro.png ├── avatars │ ├── avatar1.jpg │ ├── avatar2.jpg │ ├── avatar3.jpg │ ├── avatar4.jpg │ ├── avatar5.jpg │ └── avatar6.jpg ├── bg-billing.jpg ├── billing-page.jpg ├── blocks.png ├── blog1.jpg ├── blog2.jpg ├── blog3.jpg ├── blog4.jpg ├── blog5.jpg ├── blog6.jpg ├── checkout.jpg ├── code.png ├── components.png ├── consistenly.png ├── content1.jpg ├── dashboard-page.jpg ├── data.json ├── down-arrow-dark.svg ├── down-arrow.svg ├── error-500.png ├── favicon.png ├── favicon.svg ├── features1.jpg ├── features2.jpg ├── features3.jpg ├── features4.jpg ├── github.png ├── header-blue-purple.jpg ├── header.png ├── icon1.png ├── icon2.png ├── icon3.png ├── image-devs.png ├── landing-page.jpg ├── logo-ct-dark.png ├── logos │ ├── logo-amazon-old.svg │ ├── logo-amazons.svg │ ├── logo-android.svg │ ├── logo-apple.png │ ├── logo-cisco.svg │ ├── logo-coinbase.svg │ ├── logo-facebook.png │ ├── logo-google-play.svg │ ├── logo-google.png │ ├── logo-google.svg │ ├── logo-ibm.svg │ ├── logo-ios.svg │ ├── logo-microsoft.svg │ ├── logo-netflix.svg │ ├── logo-pinterest.svg │ ├── logo-salesforce.svg │ ├── logo-spotify.svg │ ├── logo-united-nations.svg │ └── logo-vodafone.svg ├── palette.png ├── signin.jpg ├── store-bg.jpg ├── stores-bg.jpg └── volant-unsplash.jpg ├── src ├── components │ ├── 404 │ │ └── content.tsx │ ├── about │ │ ├── accordion.tsx │ │ ├── feature.tsx │ │ ├── features.tsx │ │ ├── footer.tsx │ │ ├── header.tsx │ │ ├── pricing.tsx │ │ ├── stats.tsx │ │ ├── team.tsx │ │ └── testimonials.tsx │ ├── dashboardContext.tsx │ ├── defaultNavbar.tsx │ ├── footer.tsx │ ├── forgotPassword.tsx │ ├── header.tsx │ ├── landing │ │ ├── categories.tsx │ │ ├── content.tsx │ │ ├── footer.tsx │ │ ├── header.tsx │ │ ├── starterPack.tsx │ │ └── testimonials.tsx │ ├── navbar.tsx │ ├── presentation │ │ ├── astro.tsx │ │ ├── code.tsx │ │ ├── developer.tsx │ │ ├── developerFree.tsx │ │ ├── example.tsx │ │ ├── feature.tsx │ │ ├── figma.tsx │ │ ├── footer.tsx │ │ ├── footerFree.tsx │ │ ├── freeToPro.tsx │ │ ├── github.tsx │ │ ├── header.tsx │ │ ├── logos.tsx │ │ ├── pages.tsx │ │ ├── pagesFree.tsx │ │ ├── palette.tsx │ │ └── pricing.tsx │ ├── signin.tsx │ ├── signup.tsx │ └── theme-provider.tsx ├── env.d.ts ├── layouts │ └── Layout.astro ├── pages │ ├── 404.astro │ ├── about.astro │ ├── index.astro │ ├── landing.astro │ ├── login.astro │ └── signup.astro └── pagesFree │ ├── 404.astro │ ├── about.astro │ ├── index.astro │ ├── landing.astro │ ├── login.astro │ └── signup.astro ├── tailwind.config.js ├── tsconfig.json └── types └── index.d.ts /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/CHANGELOG.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/assets/css/input.css -------------------------------------------------------------------------------- /assets/css/material-tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/assets/css/material-tailwind.css -------------------------------------------------------------------------------- /assets/js/astro-ecommerce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/assets/js/astro-ecommerce.min.js -------------------------------------------------------------------------------- /assets/scss/loading-dot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/assets/scss/loading-dot.css -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /hooks/interaction/useApiQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/hooks/interaction/useApiQuery.tsx -------------------------------------------------------------------------------- /hooks/tools/copyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/hooks/tools/copyToClipboard.tsx -------------------------------------------------------------------------------- /hooks/tools/useEffectOnlyOnUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/hooks/tools/useEffectOnlyOnUpdate.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/package.json -------------------------------------------------------------------------------- /public/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/404.jpg -------------------------------------------------------------------------------- /public/aboutus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/aboutus.jpg -------------------------------------------------------------------------------- /public/astro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/astro.png -------------------------------------------------------------------------------- /public/avatars/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/avatars/avatar1.jpg -------------------------------------------------------------------------------- /public/avatars/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/avatars/avatar2.jpg -------------------------------------------------------------------------------- /public/avatars/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/avatars/avatar3.jpg -------------------------------------------------------------------------------- /public/avatars/avatar4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/avatars/avatar4.jpg -------------------------------------------------------------------------------- /public/avatars/avatar5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/avatars/avatar5.jpg -------------------------------------------------------------------------------- /public/avatars/avatar6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/avatars/avatar6.jpg -------------------------------------------------------------------------------- /public/bg-billing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/bg-billing.jpg -------------------------------------------------------------------------------- /public/billing-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/billing-page.jpg -------------------------------------------------------------------------------- /public/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/blocks.png -------------------------------------------------------------------------------- /public/blog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/blog1.jpg -------------------------------------------------------------------------------- /public/blog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/blog2.jpg -------------------------------------------------------------------------------- /public/blog3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/blog3.jpg -------------------------------------------------------------------------------- /public/blog4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/blog4.jpg -------------------------------------------------------------------------------- /public/blog5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/blog5.jpg -------------------------------------------------------------------------------- /public/blog6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/blog6.jpg -------------------------------------------------------------------------------- /public/checkout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/checkout.jpg -------------------------------------------------------------------------------- /public/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/code.png -------------------------------------------------------------------------------- /public/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/components.png -------------------------------------------------------------------------------- /public/consistenly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/consistenly.png -------------------------------------------------------------------------------- /public/content1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/content1.jpg -------------------------------------------------------------------------------- /public/dashboard-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/dashboard-page.jpg -------------------------------------------------------------------------------- /public/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/data.json -------------------------------------------------------------------------------- /public/down-arrow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/down-arrow-dark.svg -------------------------------------------------------------------------------- /public/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/down-arrow.svg -------------------------------------------------------------------------------- /public/error-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/error-500.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/features1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/features1.jpg -------------------------------------------------------------------------------- /public/features2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/features2.jpg -------------------------------------------------------------------------------- /public/features3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/features3.jpg -------------------------------------------------------------------------------- /public/features4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/features4.jpg -------------------------------------------------------------------------------- /public/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/github.png -------------------------------------------------------------------------------- /public/header-blue-purple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/header-blue-purple.jpg -------------------------------------------------------------------------------- /public/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/header.png -------------------------------------------------------------------------------- /public/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/icon1.png -------------------------------------------------------------------------------- /public/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/icon2.png -------------------------------------------------------------------------------- /public/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/icon3.png -------------------------------------------------------------------------------- /public/image-devs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/image-devs.png -------------------------------------------------------------------------------- /public/landing-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/landing-page.jpg -------------------------------------------------------------------------------- /public/logo-ct-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logo-ct-dark.png -------------------------------------------------------------------------------- /public/logos/logo-amazon-old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-amazon-old.svg -------------------------------------------------------------------------------- /public/logos/logo-amazons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-amazons.svg -------------------------------------------------------------------------------- /public/logos/logo-android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-android.svg -------------------------------------------------------------------------------- /public/logos/logo-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-apple.png -------------------------------------------------------------------------------- /public/logos/logo-cisco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-cisco.svg -------------------------------------------------------------------------------- /public/logos/logo-coinbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-coinbase.svg -------------------------------------------------------------------------------- /public/logos/logo-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-facebook.png -------------------------------------------------------------------------------- /public/logos/logo-google-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-google-play.svg -------------------------------------------------------------------------------- /public/logos/logo-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-google.png -------------------------------------------------------------------------------- /public/logos/logo-google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-google.svg -------------------------------------------------------------------------------- /public/logos/logo-ibm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-ibm.svg -------------------------------------------------------------------------------- /public/logos/logo-ios.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-ios.svg -------------------------------------------------------------------------------- /public/logos/logo-microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-microsoft.svg -------------------------------------------------------------------------------- /public/logos/logo-netflix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-netflix.svg -------------------------------------------------------------------------------- /public/logos/logo-pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-pinterest.svg -------------------------------------------------------------------------------- /public/logos/logo-salesforce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-salesforce.svg -------------------------------------------------------------------------------- /public/logos/logo-spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-spotify.svg -------------------------------------------------------------------------------- /public/logos/logo-united-nations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-united-nations.svg -------------------------------------------------------------------------------- /public/logos/logo-vodafone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/logos/logo-vodafone.svg -------------------------------------------------------------------------------- /public/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/palette.png -------------------------------------------------------------------------------- /public/signin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/signin.jpg -------------------------------------------------------------------------------- /public/store-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/store-bg.jpg -------------------------------------------------------------------------------- /public/stores-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/stores-bg.jpg -------------------------------------------------------------------------------- /public/volant-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/public/volant-unsplash.jpg -------------------------------------------------------------------------------- /src/components/404/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/404/content.tsx -------------------------------------------------------------------------------- /src/components/about/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/about/accordion.tsx -------------------------------------------------------------------------------- /src/components/about/feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/about/feature.tsx -------------------------------------------------------------------------------- /src/components/about/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/about/features.tsx -------------------------------------------------------------------------------- /src/components/about/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/about/footer.tsx -------------------------------------------------------------------------------- /src/components/about/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/about/header.tsx -------------------------------------------------------------------------------- /src/components/about/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/about/pricing.tsx -------------------------------------------------------------------------------- /src/components/about/stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/about/stats.tsx -------------------------------------------------------------------------------- /src/components/about/team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/about/team.tsx -------------------------------------------------------------------------------- /src/components/about/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/about/testimonials.tsx -------------------------------------------------------------------------------- /src/components/dashboardContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/dashboardContext.tsx -------------------------------------------------------------------------------- /src/components/defaultNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/defaultNavbar.tsx -------------------------------------------------------------------------------- /src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/footer.tsx -------------------------------------------------------------------------------- /src/components/forgotPassword.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/header.tsx -------------------------------------------------------------------------------- /src/components/landing/categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/landing/categories.tsx -------------------------------------------------------------------------------- /src/components/landing/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/landing/content.tsx -------------------------------------------------------------------------------- /src/components/landing/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/landing/footer.tsx -------------------------------------------------------------------------------- /src/components/landing/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/landing/header.tsx -------------------------------------------------------------------------------- /src/components/landing/starterPack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/landing/starterPack.tsx -------------------------------------------------------------------------------- /src/components/landing/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/landing/testimonials.tsx -------------------------------------------------------------------------------- /src/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/navbar.tsx -------------------------------------------------------------------------------- /src/components/presentation/astro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/astro.tsx -------------------------------------------------------------------------------- /src/components/presentation/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/code.tsx -------------------------------------------------------------------------------- /src/components/presentation/developer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/developer.tsx -------------------------------------------------------------------------------- /src/components/presentation/developerFree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/developerFree.tsx -------------------------------------------------------------------------------- /src/components/presentation/example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/example.tsx -------------------------------------------------------------------------------- /src/components/presentation/feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/feature.tsx -------------------------------------------------------------------------------- /src/components/presentation/figma.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/figma.tsx -------------------------------------------------------------------------------- /src/components/presentation/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/footer.tsx -------------------------------------------------------------------------------- /src/components/presentation/footerFree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/footerFree.tsx -------------------------------------------------------------------------------- /src/components/presentation/freeToPro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/freeToPro.tsx -------------------------------------------------------------------------------- /src/components/presentation/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/github.tsx -------------------------------------------------------------------------------- /src/components/presentation/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/header.tsx -------------------------------------------------------------------------------- /src/components/presentation/logos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/logos.tsx -------------------------------------------------------------------------------- /src/components/presentation/pages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/pages.tsx -------------------------------------------------------------------------------- /src/components/presentation/pagesFree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/pagesFree.tsx -------------------------------------------------------------------------------- /src/components/presentation/palette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/palette.tsx -------------------------------------------------------------------------------- /src/components/presentation/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/presentation/pricing.tsx -------------------------------------------------------------------------------- /src/components/signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/signin.tsx -------------------------------------------------------------------------------- /src/components/signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/signup.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pages/about.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/landing.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pages/landing.astro -------------------------------------------------------------------------------- /src/pages/login.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pages/login.astro -------------------------------------------------------------------------------- /src/pages/signup.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pages/signup.astro -------------------------------------------------------------------------------- /src/pagesFree/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pagesFree/404.astro -------------------------------------------------------------------------------- /src/pagesFree/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pagesFree/about.astro -------------------------------------------------------------------------------- /src/pagesFree/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pagesFree/index.astro -------------------------------------------------------------------------------- /src/pagesFree/landing.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pagesFree/landing.astro -------------------------------------------------------------------------------- /src/pagesFree/login.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pagesFree/login.astro -------------------------------------------------------------------------------- /src/pagesFree/signup.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/src/pagesFree/signup.astro -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/astro-launch-ui/HEAD/types/index.d.ts --------------------------------------------------------------------------------