import BaseLayout from ’../../../layouts/BaseLayout.astro’; import Navigation from ’../../../components/Navigation.astro’; import Footer from ’../../../components/Footer.astro’; import Container from ’../../../components/ui/Container.astro’; import Heading from ’../../../components/ui/Heading.astro’; import Text from ’../../../components/ui/Text.astro’;
{/* Title */}
<Heading level={1} class="mb-6">
{frontmatter.title}
</Heading>
{/* Author Bio */}
<div class="flex items-center gap-4 pb-8 border-b border-neutral-200 dark:border-neutral-800">
<div class="w-12 h-12 rounded-full bg-gradient-to-br from-primary to-accent flex items-center justify-center text-white font-bold">
{frontmatter.author.split(' ').map(n => n[0]).join('')}
</div>
<div>
<Text size="sm" class="font-medium">
{frontmatter.author}
</Text>
<Text size="sm" variant="subtle">
Founder @ DreamGTM
</Text>
</div>
</div>
</div>
</Container>
</section>
{/* Featured Image */}
{frontmatter.image && (
<section class="py-8">
<Container maxWidth="6xl">
<div class="aspect-[21/9] rounded-xl overflow-hidden">
<img src={frontmatter.image} alt={frontmatter.title} class="w-full h-full object-cover" />
</div>
</Container>
</section>
)}
<!-- Article Content -->
<article class="py-16">
<Container maxWidth="4xl">
<div class="max-w-3xl mx-auto prose prose-lg dark:prose-invert">
Most GTM strategies fail because they’re built for enterprises with massive budgets and dedicated teams. But you’re a founder. You need something different.
Here’s what actually works when you’re building from zero to $1M ARR…
Don’t just guess. Use data. Here’s how:
Cold outreach works when done right:
Not vanity metrics. Actual pipeline:
When founders implement this framework:
This is just scratching the surface. If you want the full playbook, including:
Book a free GTM audit and we’ll build your custom roadmap together.
</div>
</Container>
</article>