├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── SolarLogo.tsx ├── SolarMark.tsx └── images │ ├── LineChartIllustration.tsx │ ├── clouds.png │ ├── drone.png │ ├── droneold.png │ ├── farm-footer.webp │ ├── field.png │ └── smiller.jpeg ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── not-found.tsx │ ├── opengraph-image.png │ ├── page.tsx │ └── siteConfig.ts ├── components │ ├── Button.tsx │ ├── Divider.tsx │ ├── Fade.tsx │ ├── Icons.tsx │ ├── LineChart.tsx │ ├── Orbit.tsx │ ├── Table.tsx │ └── ui │ │ ├── AnalyticsIllustration.tsx │ │ ├── CallToAction.tsx │ │ ├── ChipViz.tsx │ │ ├── FeatureDivider.tsx │ │ ├── Features.tsx │ │ ├── Footer.tsx │ │ ├── Hero.tsx │ │ ├── HeroBackground.tsx │ │ ├── Map │ │ ├── Map.tsx │ │ └── SVGMap.tsx │ │ ├── Navbar.tsx │ │ ├── SolarAnalytics.tsx │ │ ├── StickerCard.tsx │ │ └── Testimonial.tsx └── lib │ ├── useScroll.ts │ └── utils.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/README.md -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/SolarLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/public/SolarLogo.tsx -------------------------------------------------------------------------------- /public/SolarMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/public/SolarMark.tsx -------------------------------------------------------------------------------- /public/images/LineChartIllustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/public/images/LineChartIllustration.tsx -------------------------------------------------------------------------------- /public/images/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/public/images/clouds.png -------------------------------------------------------------------------------- /public/images/drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/public/images/drone.png -------------------------------------------------------------------------------- /public/images/droneold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/public/images/droneold.png -------------------------------------------------------------------------------- /public/images/farm-footer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/public/images/farm-footer.webp -------------------------------------------------------------------------------- /public/images/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/public/images/field.png -------------------------------------------------------------------------------- /public/images/smiller.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/public/images/smiller.jpeg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/siteConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/app/siteConfig.ts -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/Divider.tsx -------------------------------------------------------------------------------- /src/components/Fade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/Fade.tsx -------------------------------------------------------------------------------- /src/components/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/Icons.tsx -------------------------------------------------------------------------------- /src/components/LineChart.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Orbit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/Orbit.tsx -------------------------------------------------------------------------------- /src/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/Table.tsx -------------------------------------------------------------------------------- /src/components/ui/AnalyticsIllustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/AnalyticsIllustration.tsx -------------------------------------------------------------------------------- /src/components/ui/CallToAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/CallToAction.tsx -------------------------------------------------------------------------------- /src/components/ui/ChipViz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/ChipViz.tsx -------------------------------------------------------------------------------- /src/components/ui/FeatureDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/FeatureDivider.tsx -------------------------------------------------------------------------------- /src/components/ui/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/Features.tsx -------------------------------------------------------------------------------- /src/components/ui/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/Footer.tsx -------------------------------------------------------------------------------- /src/components/ui/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/Hero.tsx -------------------------------------------------------------------------------- /src/components/ui/HeroBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/HeroBackground.tsx -------------------------------------------------------------------------------- /src/components/ui/Map/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/Map/Map.tsx -------------------------------------------------------------------------------- /src/components/ui/Map/SVGMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/Map/SVGMap.tsx -------------------------------------------------------------------------------- /src/components/ui/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/Navbar.tsx -------------------------------------------------------------------------------- /src/components/ui/SolarAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/SolarAnalytics.tsx -------------------------------------------------------------------------------- /src/components/ui/StickerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/StickerCard.tsx -------------------------------------------------------------------------------- /src/components/ui/Testimonial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/components/ui/Testimonial.tsx -------------------------------------------------------------------------------- /src/lib/useScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/lib/useScroll.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-solar/HEAD/tsconfig.json --------------------------------------------------------------------------------