import type { CalloutProps } from "./types"; /* Card Items */ export const defaultSimpleItems: CalloutProps["items"] = [ { title: "ultra-fast fiber internet", body: "Reliable high-speed internet for your home on our fiber-backed network.", image: "https://images.ctfassets.net/8d4yn2ywtegc/2tArpGyb6Pmog6tU972NRR/07761d8a230242e0e8e302dbc0345f5e/icon.svg", imageAlt: "Purple speedometer", imageWidth: 88, imageHeight: 88, iconAlignment: "left", imageView: "standard", cta: { buttonLabel: "See options", href: "/fiber-internet", target: "_self", showButtonAs: "text", preserveQueryParameters: true, }, ctaAlignment: "left", showBackgroundImage: true, // Blog-compatible fields shortDescription: "Reliable high-speed internet for your home on our fiber-backed network.", slug: "/fiber-internet", blogCreationDate: "2026-01-15", category: "Internet", cover: { src: "https://images.ctfassets.net/8d4yn2ywtegc/17t6o3lIEE1OmyRtK2LSiN/7c00763e6afc39e97492c8aa3a3e5260/image_390.jpg", alt: "Fiber internet", width: 1920, height: 1281 }, // FullImage / FloatingImage-compatible fields description: "Reliable high-speed internet for your home on our fiber-backed network.", caption: "Fiber-backed network", }, { title: "tv and entertainment", body: "Start streaming with best-in-class live entertainment.", image: "https://images.ctfassets.net/8d4yn2ywtegc/2XHS5ndV3g8qq4GmDxdmai/911b3dcfe6ba2240dd09b4d4153390a5/icon-1.svg", imageAlt: "Green streaming play", imageWidth: 88, imageHeight: 88, iconAlignment: "left", imageView: "standard", cta: { buttonLabel: "See options", href: "/products", target: "_self", showButtonAs: "text", preserveQueryParameters: true, }, ctaAlignment: "left", // Blog-compatible fields shortDescription: "Start streaming with best-in-class live entertainment.", slug: "/products", blogCreationDate: "2026-02-20", category: "Entertainment", cover: { src: "https://images.ctfassets.net/8d4yn2ywtegc/2QoSoX9jUc6G8Tvg007MI0/7ae950e16d2ac83ff75b992dc9e24c37/image_388.jpg", alt: "TV entertainment", width: 1920, height: 1281 }, // FullImage / FloatingImage-compatible fields description: "Start streaming with best-in-class live entertainment.", caption: "Live entertainment", }, { title: "voice services", body: "Unlimited nationwide voice calling with Kinetic phone service.", image: "https://images.ctfassets.net/8d4yn2ywtegc/1JPpHXSe3WcQBOSTHhK3YD/9398907485bc13a90e46df73a4c6634c/icon-2.svg", imageAlt: "Blue phone", imageWidth: 88, imageHeight: 88, iconAlignment: "left", imageView: "standard", cta: { buttonLabel: "See options", href: "/home-phone", target: "_self", showButtonAs: "text", preserveQueryParameters: true, }, ctaAlignment: "left", // Blog-compatible fields shortDescription: "Unlimited nationwide voice calling with Kinetic phone service.", slug: "/home-phone", blogCreationDate: "2026-03-10", category: "Phone", cover: { src: "https://images.ctfassets.net/8d4yn2ywtegc/6CVKQrlrmcuNyefT6jM96d/8264de217e3822c0e7284c823c57314c/image_391.jpg", alt: "Voice services", width: 1920, height: 1280 }, // FullImage / FloatingImage-compatible fields description: "Unlimited nationwide voice calling with Kinetic phone service.", caption: "Nationwide calling", }, ]; /* Floating Image Card Items */ export const floatingImageItems: CalloutProps["items"] = [ { cardType: "floatingImage", title: "pick your favorite video conferencing spot", body: "Our technicians can ensure Wi-Fi reaches your home office with optimal connectivity.", image: { href: "https://images.ctfassets.net/8d4yn2ywtegc/17t6o3lIEE1OmyRtK2LSiN/7c00763e6afc39e97492c8aa3a3e5260/image_390.jpg", title: "Pick your favorite spot", width: 1920, height: 1281, }, }, { cardType: "floatingImage", title: "stream and game from anywhere", body: "Strong Wi-Fi throughout your whole home means you can enjoy your favorite movies, sports, and video games from every room.", image: { href: "https://images.ctfassets.net/8d4yn2ywtegc/2QoSoX9jUc6G8Tvg007MI0/7ae950e16d2ac83ff75b992dc9e24c37/image_388.jpg", title: "Stream and game from anywhere", width: 1920, height: 1281, }, }, { cardType: "floatingImage", title: "manage your smart home", body: "Let our technicians know what smart devices you need connected during your Wi-Fi installation for seamless coverage.", image: { href: "https://images.ctfassets.net/8d4yn2ywtegc/6CVKQrlrmcuNyefT6jM96d/8264de217e3822c0e7284c823c57314c/image_391.jpg", title: "Brother and sister smart home", width: 1920, height: 1280, }, }, ]; /* Full Image Card Items */ export const fullImageItems: CalloutProps["items"] = [ { cardType: "fullImage", title: "Stream in 4K", description: "Crystal clear entertainment on every device.", caption: "Starting at $49/mo", image: { href: "https://images.ctfassets.net/8d4yn2ywtegc/2QoSoX9jUc6G8Tvg007MI0/7ae950e16d2ac83ff75b992dc9e24c37/image_388.jpg", title: "Streaming", width: 1920, height: 1281, }, cta: { buttonLabel: "Learn more", href: "/streaming", showButtonAs: "solid", buttonVariant: "primary_brand", }, }, { cardType: "fullImage", title: "Work From Home", description: "Stay productive with reliable, fast internet.", caption: "Starting at $59/mo", image: { href: "https://images.ctfassets.net/8d4yn2ywtegc/17t6o3lIEE1OmyRtK2LSiN/7c00763e6afc39e97492c8aa3a3e5260/image_390.jpg", title: "Work from home", width: 1920, height: 1281, }, cta: { buttonLabel: "See plans", href: "/plans", showButtonAs: "solid", buttonVariant: "primary_brand", }, }, { cardType: "fullImage", title: "Game Online", description: "Low latency for competitive gaming.", caption: "Starting at $69/mo", image: { href: "https://images.ctfassets.net/8d4yn2ywtegc/6CVKQrlrmcuNyefT6jM96d/8264de217e3822c0e7284c823c57314c/image_391.jpg", title: "Gaming", width: 1920, height: 1280, }, cta: { buttonLabel: "Get started", href: "/gaming", showButtonAs: "solid", buttonVariant: "primary_brand", }, }, ]; /* Blog Card Items */ export const blogItems: CalloutProps["items"] = [ { cardType: "blog", title: "How to Choose the Right Internet Plan", shortDescription: "A guide to picking the best plan for your needs.", blogCreationDate: "2026-01-15", category: "Guides", slug: "/blog/choose-internet-plan", cover: { src: "https://images.ctfassets.net/8d4yn2ywtegc/17t6o3lIEE1OmyRtK2LSiN/7c00763e6afc39e97492c8aa3a3e5260/image_390.jpg", alt: "Internet plan guide", width: 1920, height: 1281, }, }, { cardType: "blog", title: "Top 5 Tips for Faster Wi-Fi", shortDescription: "Simple tricks to boost your home network speed.", blogCreationDate: "2026-02-20", category: "Tips", slug: "/blog/faster-wifi-tips", cover: { src: "https://images.ctfassets.net/8d4yn2ywtegc/2QoSoX9jUc6G8Tvg007MI0/7ae950e16d2ac83ff75b992dc9e24c37/image_388.jpg", alt: "Wi-Fi tips", width: 1920, height: 1281, }, }, { cardType: "blog", title: "Understanding Fiber Optic Internet", shortDescription: "Everything you need to know about fiber technology.", blogCreationDate: "2026-03-10", category: "Technology", slug: "/blog/fiber-optic-internet", cover: { src: "https://images.ctfassets.net/8d4yn2ywtegc/6CVKQrlrmcuNyefT6jM96d/8264de217e3822c0e7284c823c57314c/image_391.jpg", alt: "Fiber optic technology", width: 1920, height: 1280, }, }, ]; /* Default Callout Args */ export const defaultCalloutArgs: Partial = { title: "whatever you need, Kinetic can deliver", subtitle: "We're not just delivering high-speed internet. We're delivering it with local care, backed by people who live and work right here in your community. That means service you can count on and people you can trust.", items: defaultSimpleItems, cardType: "simple", cardStackingMobile: true, backgroundColor: "white", textColor: "#00002d", cardsWidth: true, maxCardsPerRow: 3, applyBoxShadow: false, }; /* Floating Image Callout Args — mirrors martech */ export const withFloatingImageArgs: Partial = { anchorId: "callout", title: "we'll connect your devices, so you don't have to", subtitle: "With Kinetic's Whole Home Wi-Fi Set Up, our technicians ensure you can get online quickly from any device, anywhere in your home.", items: floatingImageItems, cardType: "floatingImage", cardStackingMobile: true, background: "#fff", textColor: "#00002D", maxCardsPerRow: 3, }; /* Four Column Items */ export const fourColumnItems: CalloutProps["items"] = [ { title: "1 Gig Internet", body: "Download speeds up to 1 Gbps for the ultimate connected home.", image: "https://images.ctfassets.net/8d4yn2ywtegc/2tArpGyb6Pmog6tU972NRR/07761d8a230242e0e8e302dbc0345f5e/icon.svg", imageAlt: "Purple speedometer", imageWidth: 88, imageHeight: 88, iconAlignment: "center", imageView: "icon", cta: { buttonLabel: "View plan", href: "/plans/1gig", showButtonAs: "text" }, ctaAlignment: "center", }, { title: "500 Mbps Internet", body: "Fast enough for streaming, gaming, and video calls simultaneously.", image: "https://images.ctfassets.net/8d4yn2ywtegc/2XHS5ndV3g8qq4GmDxdmai/911b3dcfe6ba2240dd09b4d4153390a5/icon-1.svg", imageAlt: "Green streaming play", imageWidth: 88, imageHeight: 88, iconAlignment: "center", imageView: "icon", cta: { buttonLabel: "View plan", href: "/plans/500", showButtonAs: "text" }, ctaAlignment: "center", }, { title: "300 Mbps Internet", body: "Great for households with multiple connected devices.", image: "https://images.ctfassets.net/8d4yn2ywtegc/1JPpHXSe3WcQBOSTHhK3YD/9398907485bc13a90e46df73a4c6634c/icon-2.svg", imageAlt: "Blue phone", imageWidth: 88, imageHeight: 88, iconAlignment: "center", imageView: "icon", cta: { buttonLabel: "View plan", href: "/plans/300", showButtonAs: "text" }, ctaAlignment: "center", }, { title: "100 Mbps Internet", body: "Reliable everyday internet for browsing and email.", image: "https://images.ctfassets.net/8d4yn2ywtegc/2tArpGyb6Pmog6tU972NRR/07761d8a230242e0e8e302dbc0345f5e/icon.svg", imageAlt: "Purple speedometer", imageWidth: 88, imageHeight: 88, iconAlignment: "center", imageView: "icon", cta: { buttonLabel: "View plan", href: "/plans/100", showButtonAs: "text" }, ctaAlignment: "center", }, ]; /* Six Column Items */ export const sixColumnItems: CalloutProps["items"] = [ { title: "Speed", body: "Up to 1 Gbps fiber speeds." }, { title: "Reliability", body: "99.9% uptime guaranteed." }, { title: "Support", body: "24/7 local customer care." }, { title: "Value", body: "No hidden fees or contracts." }, { title: "Security", body: "Built-in network protection." }, { title: "Flexibility", body: "Upgrade anytime, no penalty." }, ];