+
+ );
+};
+
+export default Services;
\ No newline at end of file
diff --git a/src/components/Testimonials.tsx b/src/components/Testimonials.tsx
new file mode 100644
index 0000000..91c6b07
--- /dev/null
+++ b/src/components/Testimonials.tsx
@@ -0,0 +1,72 @@
+import { Card, CardContent } from "@/components/ui/card";
+import { Star } from "lucide-react";
+
+const Testimonials = () => {
+ const testimonials = [
+ {
+ quote: "Greg's expertise saved us thousands during our audit. His calm approach and deep knowledge gave us complete confidence throughout the process.",
+ initials: "M.R.",
+ role: "Small Business Owner"
+ },
+ {
+ quote: "Twenty years of working with Greg, and he still finds new ways to optimize our tax strategy. Truly a partner in our business success.",
+ initials: "D.S.",
+ role: "Real Estate Developer"
+ },
+ {
+ quote: "Professional, responsive, and incredibly thorough. Greg handles our family's complex tax situation with expertise we trust completely.",
+ initials: "L.T.",
+ role: "Family Client"
+ }
+ ];
+
+ return (
+
+
+
+
+ What Clients Say
+
+
+ Trusted by Corpus Christi families and businesses for over two decades
+
+ Building lasting relationships through trusted expertise, personalized service, and unwavering commitment to your financial success.
+
+
+
+
+ {/* Story Section */}
+
+
+
+
+
+
+ About Greg Knopp, P.C.
+
+
+
+
+ For over two decades, Greg Knopp has been the trusted CPA partner for Corpus Christi's families and businesses. What started as a commitment to provide honest, expert financial guidance has grown into a practice built on lasting relationships and proven results.
+
+
+
+ Our approach is simple: we believe every client deserves personalized attention, clear communication, and strategies tailored to their unique situation. Whether you're navigating complex tax issues, planning for business growth, or seeking peace of mind with your personal finances, we're here to guide you every step of the way.
+
+
+
+ Greg's expertise spans individual and business tax preparation, full-service accounting, payroll management, IRS representation, and strategic business consulting. Our commitment to staying current with ever-changing tax laws and regulations ensures you always receive the most effective and compliant solutions.
+
+
+
+
+ {/* Stats */}
+
+
+
+ By the Numbers
+
+
+ {stats.map((stat, index) => (
+
+
+ {stat.number}
+
+
+ {stat.label}
+
+
+ ))}
+
+
+
+
+
+
+
+
+ {/* Credentials Section */}
+
+
+
+
+ Credentials & Certifications
+
+
+
+ {credentials.map((credential, index) => (
+
+
+ {credential}
+
+ ))}
+
+
+
+ Continuous education and professional development ensure we stay at the forefront of tax law, accounting standards, and best practices in financial planning.
+
+
+
+
+
+ {/* Values Section */}
+
+
+
+
+ Our Core Values
+
+
+
+
+
+
+
+
+ Integrity
+
+
+ Honest, transparent communication and ethical practices in every client interaction.
+
+
+
+
+
+
+
+
+ Excellence
+
+
+ Meticulous attention to detail and commitment to delivering the highest quality results.
+
+
+
+
+
+
+
+
+ Partnership
+
+
+ Building long-term relationships based on trust, reliability, and mutual success.
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default About;
\ No newline at end of file
diff --git a/src/pages/Contact.tsx b/src/pages/Contact.tsx
new file mode 100644
index 0000000..1fb9431
--- /dev/null
+++ b/src/pages/Contact.tsx
@@ -0,0 +1,279 @@
+import Navigation from "@/components/Navigation";
+import Footer from "@/components/Footer";
+import { Card, CardContent } from "@/components/ui/card";
+import { Button } from "@/components/ui/button";
+import { Input } from "@/components/ui/input";
+import { Label } from "@/components/ui/label";
+import { Textarea } from "@/components/ui/textarea";
+import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
+import {
+ MapPin,
+ Phone,
+ Mail,
+ Clock,
+ AlertTriangle,
+ MessageSquare,
+ Calendar
+} from "lucide-react";
+
+const Contact = () => {
+ return (
+
+
+
+ {/* Hero Section */}
+
+
+
+ Get in Touch
+
+
+ Ready to take control of your financial future? Contact us today for a free consultation and discover how we can help you achieve your goals.
+
+ If you're facing an IRS audit, notice, or other urgent tax matter, don't wait. Call us immediately for same-day response.
+
+
+
+
+
+
+
+ {/* Quick Actions */}
+
+
+
+
+
+
+ Response Time: Within 1 business day
+ Consultation: Always free and confidential
+
+
+
+
+
+
+
+ {/* Map Section */}
+
+
+
+
+ Visit Our Corpus Christi Office
+
+
+ {/* Placeholder for map - would integrate with Google Maps */}
+
+
+
+
+ Google Maps integration would go here
+ Showing our Corpus Christi location
+
+
+
+
+
+ Conveniently located to serve Corpus Christi and surrounding areas
+
+
+
+
+
+
+
+ );
+};
+
+export default Contact;
\ No newline at end of file
diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx
index 7130b54..a725d22 100644
--- a/src/pages/Index.tsx
+++ b/src/pages/Index.tsx
@@ -1,14 +1,27 @@
-// Update this page (the content is just a fallback if you fail to update the page)
+import Navigation from "@/components/Navigation";
+import Hero from "@/components/Hero";
+import WhyChooseUs from "@/components/WhyChooseUs";
+import Services from "@/components/Services";
+import Testimonials from "@/components/Testimonials";
+import LeadMagnet from "@/components/LeadMagnet";
+import CtaSection from "@/components/CtaSection";
+import Footer from "@/components/Footer";
const Index = () => {
return (
-
-
-
Welcome to Your Blank App
-
Start building your amazing project here!
-
+
+
+
+
+
+
+
+
+
+
+
);
};
-export default Index;
+export default Index;
\ No newline at end of file
diff --git a/src/pages/NotFound.tsx b/src/pages/NotFound.tsx
index f9cf7c5..dcb2524 100644
--- a/src/pages/NotFound.tsx
+++ b/src/pages/NotFound.tsx
@@ -1,5 +1,7 @@
import { useLocation } from "react-router-dom";
import { useEffect } from "react";
+import { Button } from "@/components/ui/button";
+import { Home, ArrowLeft } from "lucide-react";
const NotFound = () => {
const location = useLocation();
@@ -9,13 +11,41 @@ const NotFound = () => {
}, [location.pathname]);
return (
-
+ Access our comprehensive library of tax guides, calculators, FAQs, and the latest insights to help you stay informed and make confident financial decisions.
+
+ Get organized early with our comprehensive 15-page checklist covering all essential documents, deadlines, and new tax law changes for the 2025 filing season.
+
+
+
+
+
+
+
+
+ ✓ Individual & Business Items
+ ✓ New 2025 Changes
+ ✓ Important Deadlines
+ ✓ Deduction Tracker
+
+
+
+
+
+
+ {/* FAQ Schema would go here for SEO */}
+
+
+
+ );
+};
+
+export default Resources;
\ No newline at end of file
diff --git a/src/pages/ServicesPage.tsx b/src/pages/ServicesPage.tsx
new file mode 100644
index 0000000..455c9db
--- /dev/null
+++ b/src/pages/ServicesPage.tsx
@@ -0,0 +1,206 @@
+import Navigation from "@/components/Navigation";
+import Footer from "@/components/Footer";
+import { Card, CardContent } from "@/components/ui/card";
+import { Button } from "@/components/ui/button";
+import {
+ FileText,
+ Calculator,
+ Users,
+ Shield,
+ Building,
+ CheckCircle2,
+ ArrowRight,
+ Phone
+} from "lucide-react";
+
+const ServicesPage = () => {
+ const services = [
+ {
+ icon: FileText,
+ title: "Tax Preparation & Planning",
+ description: "Comprehensive tax services designed to maximize your deductions and minimize your liability.",
+ image: "/lovable-uploads/741d6934-b230-43fb-9aac-a2699bba0915.png",
+ features: [
+ "Individual and business tax returns",
+ "Quarterly estimated tax planning",
+ "Tax strategy optimization",
+ "Multi-state tax compliance",
+ "Audit-ready documentation",
+ "Year-round tax consultation"
+ ]
+ },
+ {
+ icon: Calculator,
+ title: "Accounting & Bookkeeping",
+ description: "Professional accounting services to keep your financial records accurate and up-to-date.",
+ image: "/lovable-uploads/1260e5db-df42-4f32-89c2-eecc054d669d.png",
+ features: [
+ "Monthly bookkeeping services",
+ "Financial statement preparation",
+ "Cash flow analysis and reporting",
+ "Bank reconciliation",
+ "Accounts payable/receivable management",
+ "QuickBooks setup and training"
+ ]
+ },
+ {
+ icon: Users,
+ title: "Payroll Solutions",
+ description: "Complete payroll management ensuring compliance and accuracy for your team.",
+ features: [
+ "Full-service payroll processing",
+ "Tax withholding and remittance",
+ "Benefits administration support",
+ "Compliance with federal and state regulations",
+ "Employee self-service portals",
+ "Year-end reporting and W-2 preparation"
+ ]
+ },
+ {
+ icon: Shield,
+ title: "IRS Representation",
+ description: "Expert advocacy and representation for all IRS matters and disputes.",
+ image: "/lovable-uploads/741d6934-b230-43fb-9aac-a2699bba0915.png",
+ features: [
+ "Audit representation and defense",
+ "Penalty abatement negotiations",
+ "Installment payment agreements",
+ "Offer in compromise submissions",
+ "Tax lien and levy resolution",
+ "Innocent spouse relief assistance"
+ ]
+ },
+ {
+ icon: Building,
+ title: "Business Consulting & Formation",
+ description: "Strategic guidance for business formation, growth, and operational optimization.",
+ features: [
+ "Entity selection and formation",
+ "Business valuation services",
+ "Operating agreement preparation",
+ "Strategic business planning",
+ "Merger and acquisition support",
+ "Financial analysis and projections"
+ ]
+ }
+ ];
+
+ return (
+
+
+
+ {/* Hero Section */}
+
+
+
+ Comprehensive CPA Services for Your Financial Success
+
+
+ From tax preparation to strategic business consulting, we provide the expertise and personalized service you need to achieve your financial goals.
+
+ Let's discuss how our comprehensive CPA services can help you achieve your business and personal financial goals.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default ServicesPage;
\ No newline at end of file
diff --git a/src/pages/TestimonialsPage.tsx b/src/pages/TestimonialsPage.tsx
new file mode 100644
index 0000000..95292c0
--- /dev/null
+++ b/src/pages/TestimonialsPage.tsx
@@ -0,0 +1,247 @@
+import Navigation from "@/components/Navigation";
+import Footer from "@/components/Footer";
+import { Card, CardContent } from "@/components/ui/card";
+import { Star, Quote } from "lucide-react";
+
+const TestimonialsPage = () => {
+ const testimonials = [
+ {
+ quote: "Greg's expertise saved us thousands during our audit. His calm approach and deep knowledge gave us complete confidence throughout the process. We couldn't have asked for better representation.",
+ initials: "M.R.",
+ name: "Michael R.",
+ role: "Small Business Owner",
+ business: "Construction Company",
+ rating: 5,
+ featured: true
+ },
+ {
+ quote: "Twenty years of working with Greg, and he still finds new ways to optimize our tax strategy. Truly a partner in our business success. His proactive approach has saved us countless hours and dollars.",
+ initials: "D.S.",
+ name: "David S.",
+ role: "Real Estate Developer",
+ business: "Property Development",
+ rating: 5,
+ featured: true
+ },
+ {
+ quote: "Professional, responsive, and incredibly thorough. Greg handles our family's complex tax situation with expertise we trust completely. He explains everything clearly and makes tax season stress-free.",
+ initials: "L.T.",
+ name: "Linda T.",
+ role: "Family Client",
+ business: "Personal Taxes",
+ rating: 5,
+ featured: true
+ },
+ {
+ quote: "When the IRS came knocking, Greg was our knight in shining armor. His representation was exceptional, and he negotiated a settlement we never thought possible.",
+ initials: "R.M.",
+ name: "Robert M.",
+ role: "Restaurant Owner",
+ business: "Food Service",
+ rating: 5
+ },
+ {
+ quote: "Greg helped us choose the right business structure from day one. His guidance on entity selection and tax planning set us up for success from the start.",
+ initials: "S.P.",
+ name: "Sarah P.",
+ role: "Tech Entrepreneur",
+ business: "Software Startup",
+ rating: 5
+ },
+ {
+ quote: "The monthly bookkeeping service has been a game-changer for our practice. Clean books, timely reports, and valuable insights that help us make better business decisions.",
+ initials: "J.H.",
+ name: "Dr. Jennifer H.",
+ role: "Medical Practice Owner",
+ business: "Healthcare",
+ rating: 5
+ },
+ {
+ quote: "Greg's payroll service is seamless and reliable. Never a missed deadline, always compliant, and frees us to focus on growing our business instead of paperwork.",
+ initials: "T.W.",
+ name: "Thomas W.",
+ role: "Manufacturing Manager",
+ business: "Manufacturing",
+ rating: 5
+ },
+ {
+ quote: "After years of doing our own taxes, switching to Greg was the best decision we made. His attention to detail caught deductions we'd been missing for years.",
+ initials: "A.K.",
+ name: "Andrea K.",
+ role: "Retired Couple",
+ business: "Personal Taxes",
+ rating: 5
+ },
+ {
+ quote: "Greg's business consulting helped us navigate a complex acquisition. His financial analysis and strategic advice were invaluable throughout the entire process.",
+ initials: "M.D.",
+ name: "Mark D.",
+ role: "Business Owner",
+ business: "Retail Chain",
+ rating: 5
+ }
+ ];
+
+ const featuredTestimonials = testimonials.filter(t => t.featured);
+ const regularTestimonials = testimonials.filter(t => !t.featured);
+
+ return (
+
+
+
+ {/* Hero Section */}
+
+
+
+ Client Success Stories
+
+
+ For over 20 years, we've helped Corpus Christi families and businesses achieve financial clarity and success. Here's what our clients have to say about their experience.
+