commit f45d2df4ec3fc937ed832c457002f47613602add Author: Jeff Emmett Date: Mon Feb 16 08:09:56 2026 +0000 Initial commit: PortaPower.buzz marketing website Poop-powered festival website with Next.js 15 static export, Tailwind CSS v4, and Docker/Nginx/Traefik deployment. Single-page site with hero, how-it-works, services, impact stats, packages, testimonials, FAQ, and contact sections. Co-Authored-By: Claude Opus 4.6 diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..12b2b30 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,8 @@ +node_modules +.next +out +.git +.gitignore +README.md +.env* +*.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a0530a8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# dependencies +/node_modules +/.pnp +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# env files +.env*.local + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7efbf03 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM node:20-alpine AS builder +WORKDIR /app +COPY package.json package-lock.json* ./ +RUN npm ci +COPY . . +RUN npm run build + +FROM nginx:alpine +COPY nginx.conf /etc/nginx/conf.d/default.conf +COPY --from=builder /app/out /usr/share/nginx/html +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"] diff --git a/app/globals.css b/app/globals.css new file mode 100644 index 0000000..cfcb5dc --- /dev/null +++ b/app/globals.css @@ -0,0 +1,184 @@ +@import "tailwindcss"; + +@theme { + --color-bg-primary: #1A0E0A; + --color-bg-card: #2A1A12; + --color-bg-card-hover: #3A2A1A; + --color-neon: #39FF14; + --color-neon-dim: #2ECC10; + --color-cream: #FFF8E1; + --color-cream-dim: #E8DFC8; + --color-brown-light: #5C3D2E; + --color-brown-medium: #3E2518; + --color-brown-dark: #2A1A12; + + --font-space: "Space Grotesk", sans-serif; +} + +@layer base { + * { + box-sizing: border-box; + margin: 0; + padding: 0; + } + + html { + scroll-behavior: smooth; + scroll-padding-top: 5rem; + } + + body { + font-family: var(--font-space); + background-color: var(--color-bg-primary); + color: var(--color-cream); + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + ::selection { + background-color: var(--color-neon); + color: var(--color-bg-primary); + } +} + +/* Animations */ +@keyframes float { + 0%, 100% { transform: translateY(0) rotate(0deg); } + 33% { transform: translateY(-20px) rotate(5deg); } + 66% { transform: translateY(-10px) rotate(-3deg); } +} + +@keyframes float-slow { + 0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; } + 50% { transform: translateY(-30px) rotate(10deg); opacity: 1; } +} + +@keyframes pulse-glow { + 0%, 100% { opacity: 0.4; transform: scale(1); } + 50% { opacity: 0.8; transform: scale(1.1); } +} + +@keyframes fade-in-up { + from { opacity: 0; transform: translateY(30px); } + to { opacity: 1; transform: translateY(0); } +} + +@keyframes fade-in { + from { opacity: 0; } + to { opacity: 1; } +} + +@keyframes slide-in-left { + from { opacity: 0; transform: translateX(-40px); } + to { opacity: 1; transform: translateX(0); } +} + +@keyframes slide-in-right { + from { opacity: 0; transform: translateX(40px); } + to { opacity: 1; transform: translateX(0); } +} + +@keyframes wiggle { + 0%, 100% { transform: rotate(0deg); } + 25% { transform: rotate(-5deg); } + 75% { transform: rotate(5deg); } +} + +@keyframes dash-flow { + to { stroke-dashoffset: -20; } +} + +/* Utility classes */ +.animate-float { + animation: float 6s ease-in-out infinite; +} + +.animate-float-slow { + animation: float-slow 8s ease-in-out infinite; +} + +.animate-pulse-glow { + animation: pulse-glow 3s ease-in-out infinite; +} + +.animate-fade-in-up { + animation: fade-in-up 0.6s ease-out forwards; +} + +.animate-fade-in { + animation: fade-in 0.6s ease-out forwards; +} + +.animate-slide-in-left { + animation: slide-in-left 0.6s ease-out forwards; +} + +.animate-slide-in-right { + animation: slide-in-right 0.6s ease-out forwards; +} + +.animate-wiggle { + animation: wiggle 2s ease-in-out infinite; +} + +/* Scroll-triggered animation base state */ +.reveal { + opacity: 0; + transform: translateY(30px); + transition: opacity 0.6s ease-out, transform 0.6s ease-out; +} + +.reveal.visible { + opacity: 1; + transform: translateY(0); +} + +/* Neon glow effect */ +.neon-text { + text-shadow: 0 0 10px var(--color-neon), 0 0 40px var(--color-neon), 0 0 80px rgba(57, 255, 20, 0.3); +} + +.neon-border { + box-shadow: 0 0 10px rgba(57, 255, 20, 0.3), inset 0 0 10px rgba(57, 255, 20, 0.1); +} + +.neon-glow-orb { + background: radial-gradient(circle, rgba(57, 255, 20, 0.3) 0%, transparent 70%); + filter: blur(40px); +} + +/* Gradient text */ +.gradient-text { + background: linear-gradient(135deg, var(--color-neon) 0%, #7CFF5B 50%, var(--color-cream) 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; +} + +/* Card hover effect */ +.card-hover { + transition: transform 0.3s ease, box-shadow 0.3s ease; +} + +.card-hover:hover { + transform: translateY(-4px); + box-shadow: 0 0 20px rgba(57, 255, 20, 0.15), 0 10px 40px rgba(0, 0, 0, 0.3); +} + +/* Scrollbar styling */ +::-webkit-scrollbar { + width: 8px; +} + +::-webkit-scrollbar-track { + background: var(--color-bg-primary); +} + +::-webkit-scrollbar-thumb { + background: var(--color-brown-light); + border-radius: 4px; +} + +::-webkit-scrollbar-thumb:hover { + background: var(--color-neon-dim); +} diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 0000000..5767221 --- /dev/null +++ b/app/layout.tsx @@ -0,0 +1,44 @@ +import type { Metadata } from "next"; +import { Space_Grotesk } from "next/font/google"; +import "./globals.css"; + +const spaceGrotesk = Space_Grotesk({ + subsets: ["latin"], + variable: "--font-space", + display: "swap", +}); + +export const metadata: Metadata = { + title: "PortaPower — Turning Festival Waste Into Festival Watts", + description: + "PortaPower transforms festival porta potty waste into clean electricity through bioreactor technology. Poop-powered festivals are the future.", + keywords: [ + "festival", + "porta potty", + "bioreactor", + "renewable energy", + "waste to energy", + "sustainable festivals", + "poop power", + ], + openGraph: { + title: "PortaPower — Turning Festival Waste Into Festival Watts", + description: + "Festival porta potties that generate clean electricity through bioreactor technology.", + url: "https://portapower.buzz", + siteName: "PortaPower", + type: "website", + }, +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} + + ); +} diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..4e1d46a --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,29 @@ +import { Navigation } from "@/components/navigation"; +import { HeroSection } from "@/components/hero-section"; +import { HowItWorksSection } from "@/components/how-it-works-section"; +import { ServicesSection } from "@/components/services-section"; +import { ImpactSection } from "@/components/impact-section"; +import { PackagesSection } from "@/components/packages-section"; +import { TestimonialsSection } from "@/components/testimonials-section"; +import { FAQSection } from "@/components/faq-section"; +import { ContactSection } from "@/components/contact-section"; +import { Footer } from "@/components/footer"; + +export default function Home() { + return ( + <> + +
+ + + + + + + + +
+