diff --git a/frontend/src/app/about/page.tsx b/frontend/src/app/about/page.tsx
new file mode 100644
index 0000000..3d6f141
--- /dev/null
+++ b/frontend/src/app/about/page.tsx
@@ -0,0 +1,194 @@
+'use client'
+
+import { Header } from '@/components/Header'
+import { Footer } from '@/components/Footer'
+import { Target, Shield, Zap, Users, Globe, TrendingUp, ArrowRight } from 'lucide-react'
+import Link from 'next/link'
+
+const values = [
+ {
+ icon: Target,
+ title: 'Precision',
+ description: 'Every check, every alert, every data point is accurate and reliable.',
+ },
+ {
+ icon: Shield,
+ title: 'Privacy',
+ description: 'Your domain strategy is confidential. We never share or sell your data.',
+ },
+ {
+ icon: Zap,
+ title: 'Speed',
+ description: 'Real-time monitoring ensures you never miss a domain opportunity.',
+ },
+ {
+ icon: Users,
+ title: 'Transparency',
+ description: 'Clear pricing, honest communication, no hidden fees or surprises.',
+ },
+]
+
+const stats = [
+ { value: '500K+', label: 'Domains Monitored' },
+ { value: '99.9%', label: 'Uptime' },
+ { value: '50ms', label: 'Avg Response Time' },
+ { value: '24/7', label: 'Monitoring' },
+]
+
+const team = [
+ {
+ name: 'Domain Intelligence',
+ role: 'Core Feature',
+ description: 'Advanced WHOIS and RDAP queries for accurate availability detection.',
+ },
+ {
+ name: 'Price Tracking',
+ role: 'Market Insights',
+ description: 'Real-time TLD pricing from major registrars worldwide.',
+ },
+ {
+ name: 'Instant Alerts',
+ role: 'Notifications',
+ description: 'Email and webhook notifications the moment domains become available.',
+ },
+]
+
+export default function AboutPage() {
+ return (
+
+ {/* Ambient glow */}
+
+
+
+
+
+
+
+
+ {/* Hero */}
+
+
+
+ About pounce
+
+
+ Domain intelligence,
+
+ simplified.
+
+
+ We built pounce to give domain investors, businesses, and individuals
+ the tools they need to secure high-value domains before anyone else.
+
+
+
+ {/* Stats */}
+
+ {stats.map((stat) => (
+
+
+ {stat.value}
+
+
{stat.label}
+
+ ))}
+
+
+ {/* Mission */}
+
+
+
+ Our Mission
+
+
+ To democratize domain intelligence. We believe everyone should have access to
+ professional-grade domain monitoring tools, not just large corporations with
+ expensive enterprise solutions. pounce makes it possible to track any domain,
+ understand market trends, and act fast when opportunities arise.
+
+
+
+
+ {/* Values */}
+
+
+ What We Stand For
+
+
+ {values.map((value, i) => (
+
+
+
+
+
{value.title}
+
{value.description}
+
+ ))}
+
+
+
+ {/* Features */}
+
+
+ What We Do
+
+
+ {team.map((item, i) => (
+
+
+
+
{item.name}
+
+ {item.role}
+
+
+
{item.description}
+
+
+ ))}
+
+
+
+ {/* CTA */}
+
+
+ Ready to get started?
+
+
+ Join thousands of domain professionals using pounce.
+
+
+
+ Start Free
+
+
+
+ Contact Us
+
+
+
+
+
+
+
+
+ )
+}
+
diff --git a/frontend/src/app/blog/page.tsx b/frontend/src/app/blog/page.tsx
new file mode 100644
index 0000000..99202b2
--- /dev/null
+++ b/frontend/src/app/blog/page.tsx
@@ -0,0 +1,198 @@
+'use client'
+
+import { Header } from '@/components/Header'
+import { Footer } from '@/components/Footer'
+import { BookOpen, Calendar, Clock, ArrowRight, TrendingUp, Shield, Zap } from 'lucide-react'
+import Link from 'next/link'
+
+const featuredPost = {
+ title: 'The Complete Guide to Domain Investing in 2025',
+ excerpt: 'Everything you need to know about finding, evaluating, and acquiring valuable domains in today\'s market.',
+ category: 'Guide',
+ date: 'Dec 5, 2025',
+ readTime: '12 min read',
+ slug: 'complete-guide-domain-investing-2025',
+}
+
+const posts = [
+ {
+ title: 'Understanding TLD Pricing Trends',
+ excerpt: 'How domain extension prices fluctuate and what it means for your portfolio.',
+ category: 'Market Analysis',
+ date: 'Dec 3, 2025',
+ readTime: '5 min read',
+ icon: TrendingUp,
+ },
+ {
+ title: 'WHOIS Privacy: What You Need to Know',
+ excerpt: 'A deep dive into domain privacy protection and why it matters.',
+ category: 'Security',
+ date: 'Nov 28, 2025',
+ readTime: '7 min read',
+ icon: Shield,
+ },
+ {
+ title: 'Catching Expiring Domains: Best Practices',
+ excerpt: 'Strategies for monitoring and acquiring domains as they drop.',
+ category: 'Strategy',
+ date: 'Nov 22, 2025',
+ readTime: '6 min read',
+ icon: Zap,
+ },
+ {
+ title: 'New gTLDs: Opportunities and Risks',
+ excerpt: 'Evaluating the potential of newer generic top-level domains.',
+ category: 'Market Analysis',
+ date: 'Nov 15, 2025',
+ readTime: '8 min read',
+ icon: TrendingUp,
+ },
+ {
+ title: 'Domain Valuation 101',
+ excerpt: 'Learn the fundamentals of assessing a domain\'s worth.',
+ category: 'Guide',
+ date: 'Nov 10, 2025',
+ readTime: '10 min read',
+ icon: BookOpen,
+ },
+ {
+ title: 'API Integration: Automating Your Workflow',
+ excerpt: 'How to use the pounce API to streamline domain monitoring.',
+ category: 'Tutorial',
+ date: 'Nov 5, 2025',
+ readTime: '9 min read',
+ icon: Zap,
+ },
+]
+
+const categories = ['All', 'Guide', 'Market Analysis', 'Security', 'Strategy', 'Tutorial']
+
+export default function BlogPage() {
+ return (
+
+ {/* Ambient glow */}
+
+
+
+
+
+
+
+
+ {/* Hero */}
+
+
+
+ pounce Blog
+
+
+ Insights & Guides
+
+
+ Expert knowledge on domain investing, market trends, and strategies.
+
+ )
+}
+
diff --git a/frontend/src/app/cookies/page.tsx b/frontend/src/app/cookies/page.tsx
new file mode 100644
index 0000000..604a522
--- /dev/null
+++ b/frontend/src/app/cookies/page.tsx
@@ -0,0 +1,202 @@
+'use client'
+
+import { Header } from '@/components/Header'
+import { Footer } from '@/components/Footer'
+import { Cookie, Calendar, Check } from 'lucide-react'
+
+const cookieTypes = [
+ {
+ name: 'Essential Cookies',
+ required: true,
+ description: 'These cookies are necessary for the website to function and cannot be disabled.',
+ examples: [
+ { name: 'session_id', purpose: 'Maintains your login session', duration: 'Session' },
+ { name: 'csrf_token', purpose: 'Security token to prevent attacks', duration: 'Session' },
+ ],
+ },
+ {
+ name: 'Functional Cookies',
+ required: false,
+ description: 'These cookies enable enhanced functionality and personalization.',
+ examples: [
+ { name: 'theme', purpose: 'Remembers your display preferences', duration: '1 year' },
+ { name: 'language', purpose: 'Stores your language preference', duration: '1 year' },
+ ],
+ },
+ {
+ name: 'Analytics Cookies',
+ required: false,
+ description: 'These cookies help us understand how visitors interact with our website.',
+ examples: [
+ { name: '_ga', purpose: 'Google Analytics identifier', duration: '2 years' },
+ { name: '_gid', purpose: 'Google Analytics daily identifier', duration: '24 hours' },
+ ],
+ },
+]
+
+const sections = [
+ {
+ title: 'What Are Cookies?',
+ content: `
+
Cookies are small text files that are placed on your device when you visit a website. They are widely used to make websites work more efficiently and provide information to website owners.
+
We use cookies and similar technologies (such as local storage) to improve your experience on our website.
+ `,
+ },
+ {
+ title: 'How We Use Cookies',
+ content: `
+
We use cookies for several purposes:
+
+
Authentication: To keep you logged in and maintain your session
+
Security: To protect against fraud and unauthorized access
+
Preferences: To remember your settings and preferences
+
Analytics: To understand how you use our service and improve it
You can control and manage cookies in several ways:
+
+
Browser Settings: Most browsers allow you to refuse or delete cookies through their settings
+
Our Settings: You can adjust your cookie preferences using our cookie consent tool
+
Opt-Out Links: Some analytics providers offer opt-out browser extensions
+
+
Note that disabling certain cookies may affect the functionality of our website.
+ `,
+ },
+ {
+ title: 'Updates to This Policy',
+ content: `
+
We may update this Cookie Policy from time to time to reflect changes in technology, legislation, or our data practices. We encourage you to periodically review this page for the latest information.
+ The contents of our pages have been created with the utmost care. However, we cannot
+ guarantee the contents' accuracy, completeness, or topicality. According to statutory
+ provisions, we are responsible for our own content on these pages.
+
+
+
+
Liability for Links
+
+ Our website contains links to external third-party websites over whose content we have
+ no influence. Therefore, we cannot assume any liability for this external content. The
+ respective provider or operator of the linked pages is always responsible for the contents
+ of the linked pages.
+
+
+
+
Copyright
+
+ The content and works created by the site operators on these pages are subject to Swiss
+ copyright law. Duplication, processing, distribution, or any form of commercialization of
+ such material beyond the scope of the copyright law shall require the prior written consent
+ of its respective author or creator.
+
+
+
+
+
+ {/* Regulatory Information */}
+
+
Regulatory Information
+
+
+ pounce AG is a company registered in Switzerland. We operate in compliance with Swiss
+ law and applicable EU regulations including GDPR for EU residents. For complaints or
+ regulatory matters, please contact our legal department at{' '}
+
+ legal@pounce.dev
+ .
+
+
+
+
+
+
+
+
+ )
+}
+
diff --git a/frontend/src/app/privacy/page.tsx b/frontend/src/app/privacy/page.tsx
new file mode 100644
index 0000000..ff852ac
--- /dev/null
+++ b/frontend/src/app/privacy/page.tsx
@@ -0,0 +1,158 @@
+'use client'
+
+import { Header } from '@/components/Header'
+import { Footer } from '@/components/Footer'
+import { Shield, Calendar } from 'lucide-react'
+
+const sections = [
+ {
+ title: '1. Information We Collect',
+ content: `
+
We collect information you provide directly to us, including:
+
+
Account Information: When you create an account, we collect your email address and password (stored securely using industry-standard encryption).
+
Domain Data: Domains you add to your watchlist and their monitoring preferences.
+
Payment Information: If you subscribe to a paid plan, our payment processor (Stripe) collects and processes your payment information. We do not store credit card numbers.
+
Communications: When you contact us, we collect the information you provide in your messages.
+
+ `,
+ },
+ {
+ title: '2. How We Use Your Information',
+ content: `
+
We use the information we collect to:
+
+
Provide, maintain, and improve our services
+
Process transactions and send related information
+
Send you technical notices, updates, security alerts, and support messages
+
Respond to your comments, questions, and requests
+
Monitor and analyze trends, usage, and activities
+
Detect, investigate, and prevent fraudulent transactions and abuse
We do not sell, trade, or rent your personal information to third parties. We may share your information only in the following circumstances:
+
+
Service Providers: We work with third-party service providers who need access to your information to perform services on our behalf (e.g., payment processing, email delivery).
+
Legal Requirements: We may disclose your information if required by law or in response to valid legal requests.
+
Business Transfers: If pounce is involved in a merger, acquisition, or sale of assets, your information may be transferred as part of that transaction.
We retain your personal information for as long as your account is active or as needed to provide you services. You can request deletion of your account and associated data at any time by contacting us at privacy@pounce.dev.
+
We may retain certain information as required by law or for legitimate business purposes, such as fraud prevention.
Depending on your location, you may have the following rights regarding your personal information:
+
+
Access: Request a copy of the personal information we hold about you.
+
Correction: Request that we correct inaccurate or incomplete information.
+
Deletion: Request that we delete your personal information.
+
Data Portability: Request a copy of your data in a machine-readable format.
+
Objection: Object to processing of your personal information.
+
+
To exercise any of these rights, please contact us at privacy@pounce.dev.
+ `,
+ },
+ {
+ title: '7. International Data Transfers',
+ content: `
+
Your information may be transferred to and processed in countries other than your own. We ensure appropriate safeguards are in place for such transfers, including standard contractual clauses approved by relevant authorities.
+ `,
+ },
+ {
+ title: '8. Changes to This Policy',
+ content: `
+
We may update this Privacy Policy from time to time. We will notify you of any changes by posting the new policy on this page and updating the "Last Updated" date. We encourage you to review this policy periodically.
+ At pounce, we take your privacy seriously. This Privacy Policy explains how we collect,
+ use, disclose, and safeguard your information when you use our domain monitoring service.
+
By accessing or using pounce ("Service"), you agree to be bound by these Terms of Service ("Terms"). If you disagree with any part of the terms, you may not access the Service.
+
These Terms apply to all visitors, users, and others who access or use the Service.
The Service and its original content, features, and functionality are owned by pounce AG and are protected by international copyright, trademark, patent, trade secret, and other intellectual property laws.
+
You retain ownership of any data you provide to the Service. By using the Service, you grant us a license to use this data solely to provide and improve the Service.
While we strive to provide accurate domain information, we cannot guarantee the accuracy, completeness, or timeliness of all data. Domain availability information is based on queries to public databases (WHOIS, RDAP, DNS) and may not reflect real-time status.
+
You acknowledge that:
+
+
Domain registration decisions should not be based solely on our Service
+
We are not responsible for failed domain acquisitions
+
Pricing information is provided for reference and may vary
To the maximum extent permitted by law, pounce AG shall not be liable for any indirect, incidental, special, consequential, or punitive damages, including but not limited to:
+
+
Loss of profits, data, or business opportunities
+
Service interruptions or downtime
+
Failed domain registrations or acquisitions
+
Inaccurate information provided by the Service
+
+
Our total liability shall not exceed the amount paid by you for the Service in the twelve months preceding the claim.
+ Please read these Terms of Service carefully before using pounce.
+ Your access to and use of the Service is conditioned on your acceptance of these Terms.
+