/** * ALPHACREATIVE — UNIVERSAL CONTENT CONFIG * * Edit all website text here. Updates automatically everywhere. * Use in Squarespace by adding this file to your CDN or hosting, * then reference: window.AC_CONTENT in your code blocks. */ window.AC_CONTENT = { // ═══════════════════════════════════════════════════════════ // NAVBAR // ═══════════════════════════════════════════════════════════ navbar: { logoAlt: "AlphaCreative Logo", links: [ { label: "Services", href: "#services" }, { label: "Packages", href: "#packages" }, { label: "About", href: "#about" }, ], cta: { text: "Schedule a Call", href: "#cta", }, }, // ═══════════════════════════════════════════════════════════ // HERO SECTION // ═══════════════════════════════════════════════════════════ hero: { mainHeading: "Cross-Channel Growth Strategy", subheading: "We turn creative ideas into measurable business results.", description: "From brand strategy to digital execution, we help growth-stage companies scale across all channels.", ctaButton: { text: "Schedule a Call", href: "#cta", }, }, // ═══════════════════════════════════════════════════════════ // POSITIONING STRIP // ═══════════════════════════════════════════════════════════ positioning: { text: "Brand Strategy · Content · Digital Ads · Growth Marketing · Analytics", }, // ═══════════════════════════════════════════════════════════ // WHAT WE DO (SERVICES) // ═══════════════════════════════════════════════════════════ services: { heading: "What We Do", intro: "We specialize in helping B2B and B2C companies scale across digital channels. Our integrated approach combines strategic thinking with tactical execution.", services: [ { icon: "⚡", title: "Brand Strategy", description: "Define your positioning, messaging, and visual identity to stand out in a crowded market.", }, { icon: "✍", title: "Content Creation", description: "High-quality blogs, videos, case studies, and social content that drive engagement and authority.", }, { icon: "📊", title: "Digital Advertising", description: "Strategic campaigns across Google Ads, Meta, LinkedIn, and other channels to reach your ideal customers.", }, { icon: "📈", title: "Growth Marketing", description: "End-to-end funnel optimization: from awareness to conversion to retention and referral.", }, { icon: "🔍", title: "SEO & Organic", description: "Technical SEO, content strategy, and link building to dominate organic search rankings.", }, { icon: "📉", title: "Analytics & Reporting", description: "Custom dashboards, monthly insights, and data-driven recommendations to prove ROI.", }, ], }, // ═══════════════════════════════════════════════════════════ // PACKAGES // ═══════════════════════════════════════════════════════════ packages: { heading: "Packages", intro: "Choose the package that fits your stage and budget. All include monthly reporting and strategy reviews.", packages: [ { name: "Essentials", price: "$2,500", period: "/month", description: "Perfect for startups and small businesses.", features: [ "Up to 40 hours/month of strategic work", "Monthly strategy review call", "Basic Google Analytics setup", "One ad platform (Google or Meta)", "Monthly performance report", ], cta: "Get Started", }, { name: "Growth", price: "$5,500", period: "/month", description: "For companies serious about scaling.", features: [ "Up to 80 hours/month of strategic work", "Bi-weekly strategy calls", "Multi-channel ad management", "Content calendar and creation", "Advanced analytics and attribution", "Competitor analysis", "Quarterly strategy workshop", ], cta: "Get Started", featured: true, }, { name: "Scale", price: "$10,000+", period: "/month", description: "Full-service growth partnership.", features: [ "Unlimited hours and access", "Weekly strategy calls and sprint planning", "Full-funnel campaign management", "In-house content production", "Custom dashboards and reporting", "Dedicated team lead", "Quarterly board-level reporting", "Annual strategy summit", ], cta: "Get Started", }, ], }, // ═══════════════════════════════════════════════════════════ // ONGOING SUPPORT // ═══════════════════════════════════════════════════════════ ongoing: { heading: "Ongoing Support Included", intro: "Every package includes our full support and optimization process:", items: [ { number: "01", title: "Strategy Calls", description: "Regular check-ins to discuss wins, challenges, and next steps.", }, { number: "02", title: "Monthly Reporting", description: "Clear dashboards showing traffic, leads, conversions, and ROI by channel.", }, { number: "03", title: "Optimization", description: "Continuous testing and refinement to improve performance over time.", }, { number: "04", title: "Team Collaboration", description: "Seamless integration with your team. We document everything and provide clear handoffs.", }, ], }, // ═══════════════════════════════════════════════════════════ // ABOUT // ═══════════════════════════════════════════════════════════ about: { heading: "About AlphaCreative", description: "We're a growth marketing and creative agency built to help ambitious companies scale. Since 2018, we've worked with over 80 B2B and B2C brands to drive millions in revenue through integrated marketing strategies.", stats: [ { number: "80+", label: "Companies Scaled", }, { number: "$120M+", label: "Revenue Generated", }, { number: "6yr", label: "Average Client Relationship", }, ], approach: "We don't believe in vanity metrics. Every strategy, every campaign, every piece of content is tied to business outcomes. We take full responsibility for results—not just effort.", }, // ═══════════════════════════════════════════ // FINAL CTA // ═══════════════════════════════════════════ finalCta: { heading: "Ready to Scale Your Business?", description: "Let's talk about your goals, timeline, and how we can help you grow.", button: { text: "Schedule a Call", href: "https://secure.acuityscheduling.com/home.php", }, }, // ═══════════════════════════════════════════════════════════ // FOOTER // ═══════════════════════════════════════════════════════════ footer: { copyright: "© 2026 Made by the creative geniuses at AlphaCreative, LLC. All rights reserved.", links: [ { label: "Privacy Policy", href: "/privacy-policy" }, { label: "Terms & Conditions", href: "/terms-and-conditions" }, { label: "LinkedIn", href: "https://linkedin.com/company/alphacreative" }, { label: "Instagram", href: "https://instagram.com/the_alphacreative" }, ], }, // ═══════════════════════════════════════════════════════════ // CONTACT FORM // ═══════════════════════════════════════════════════════════ contact: { heading: "Get in Touch", description: "Tell us about your project and let's figure out how we can help.", formFields: { name: "Full Name", email: "Email Address", company: "Company Name", website: "Website (optional)", message: "Tell us about your project", submit: "Send Message", }, }, }; // ═══════════════════════════════════════════════════════════ // HELPER: Dynamic Text Replacement // ═══════════════════════════════════════════════════════════ // Use this to programmatically update text in your HTML window.updateContent = function (selector, key) { const element = document.querySelector(selector); if (element) { const keys = key.split("."); let value = window.AC_CONTENT; for (let k of keys) { value = value[k]; } if (typeof value === "string") { element.textContent = value; } } };