import Navigation from "@/components/Navigation"; import Footer from "@/components/Footer"; import ScrollToTop from "@/components/ScrollToTop"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { ExternalLink, DollarSign, Building, Newspaper, FileText, Globe, Shield, TrendingUp } from "lucide-react"; const Links = () => { const linkCategories = [ { icon: DollarSign, title: "Financial", description: "Financial news, resources, and tools", links: [ { name: "CNN Business", url: "https://edition.cnn.com/business", description: "CNN Business offers comprehensive business news, market updates, and financial information." } ] }, { icon: Building, title: "Governmental", description: "Government agencies and official resources", links: [ { name: "Social Security Online", url: "https://www.ssa.gov/", description: "The Official Website of the U.S. Social Security Administration." }, { name: "U.S. Small Business Administration", url: "https://www.sba.gov/", description: "Small business programs and services to help you start, grow, and succeed." } ] }, { icon: Newspaper, title: "News", description: "Financial and business news sources", links: [ { name: "MSNBC - Microsoft & NBC", url: "https://www.msnbc.msn.com/", description: "MSNBC is the place for up to the minute news. Many of the news articles have audio and video clips." }, { name: "Wall Street Journal", url: "https://www.wsj.com/", description: "Complete financial news service offers personalized news and market quotes. Plus, links to Barron's Online and Smart Money Interactive." } ] }, { icon: FileText, title: "Tax", description: "Tax-related resources and tools", links: [ { name: "Check IRS Refund Status", url: "https://sa.www4.irs.gov/wmr/", description: "Track your tax return through the IRS website." }, { name: "The Internal Revenue Service", url: "https://www.irs.gov/", description: "Home of the IRS on the Web. The IRS has definitely done a nice job on their Website." }, { name: "Texas Department of Revenue", url: "https://comptroller.texas.gov/taxes/", description: "Texas Department of Revenue - Official state tax information and resources." } ] } ]; const additionalResources = [ { icon: Shield, title: "Professional Organizations", links: [ { name: "American Institute of CPAs (AICPA)", url: "https://www.aicpa.org" }, { name: "Texas Society of CPAs", url: "https://www.tscpa.org" }, { name: "National Association of Tax Professionals", url: "https://www.natptax.com" } ] }, { icon: TrendingUp, title: "Investment Resources", links: [ { name: "Securities and Exchange Commission", url: "https://www.sec.gov" }, { name: "Financial Industry Regulatory Authority", url: "https://www.finra.org" }, { name: "Morningstar", url: "https://www.morningstar.com" } ] }, { icon: Globe, title: "Business Resources", links: [ { name: "U.S. Chamber of Commerce", url: "https://www.uschamber.com" }, { name: "Better Business Bureau", url: "https://www.bbb.org" }, { name: "SCORE - Small Business Mentoring", url: "https://www.score.org" } ] } ]; const handleLinkClick = (url: string) => { window.open(url, '_blank', 'noopener,noreferrer'); }; return (
{/* Hero Section */}

Links

There are many great sites on the Web, but trying to find those great sites can be a frustrating experience. We have compiled a list of websites that we have found to be helpful sources of information. When you click on a link, a new window will pop up. Close the window when you are ready to return to this page.

{/* Main Link Categories */}
{linkCategories.map((category, index) => { const Icon = category.icon; return (

{category.title}

{category.description}

{category.links.map((link, linkIndex) => (

{link.name}

{link.description}

))}
); })}
{/* Additional Resources */}

Additional Resources

More helpful resources organized by category

{additionalResources.map((category, index) => { const Icon = category.icon; return (

{category.title}

{category.links.map((link, linkIndex) => (
handleLinkClick(link.url)} > {link.name}
))}
); })}
{/* Quick Access */}

Quick Access

Most frequently accessed resources

{[ { name: "IRS Website", url: "https://www.irs.gov/", icon: FileText }, { name: "Social Security", url: "https://www.ssa.gov/", icon: Shield }, { name: "SBA", url: "https://www.sba.gov/", icon: Building }, { name: "Texas Comptroller", url: "https://comptroller.texas.gov/taxes/", icon: Globe } ].map((link, index) => { const Icon = link.icon; return (

{link.name}

); })}
{/* Disclaimer */}

Important Notice

These links are provided for your convenience and information only. We are not responsible for the content, accuracy, or availability of these external websites. The inclusion of any link does not imply endorsement by Greg Knopp, P.C. Please review the privacy policies and terms of use of any external websites you visit.

); }; export default Links;