Skip to content

Commit 636ae8f

Browse files
committed
Add DR Launcher as new project
- Add DR Launcher to homepage as project 07 - Create dedicated project page with features and CTA - Add to Privacy Policy and Terms of Service legal links
1 parent bb7e24f commit 636ae8f

4 files changed

Lines changed: 262 additions & 0 deletions

File tree

src/pages/index.astro

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ const projects = [
5757
href: '/projects/og-image-tester',
5858
externalHref: 'https://ogimagepreview.com?ref=simplebytes',
5959
subProjects: []
60+
},
61+
{
62+
number: '07',
63+
name: 'DR Launcher',
64+
description: 'Curated database of 30+ directories to quickly boost your Domain Rating.',
65+
href: '/projects/drlauncher',
66+
externalHref: 'https://www.drlauncher.com?ref=simplebytes',
67+
subProjects: []
6068
}
6169
];
6270
---

src/pages/privacy.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const appPolicies = [
66
{ name: 'Doodlify', href: 'https://www.doodlify.ai/privacy' },
77
{ name: 'EasyChef.ai', href: 'https://easychef.ai/privacy' },
88
{ name: 'OG Image Preview', href: 'https://ogimagepreview.com/privacy' },
9+
{ name: 'DR Launcher', href: 'https://www.drlauncher.com/privacy' },
910
];
1011
---
1112

Lines changed: 252 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,252 @@
1+
---
2+
import BaseLayout from '../../layouts/BaseLayout.astro';
3+
4+
const features = [
5+
{ icon: '📚', title: '30+ Verified Directories', description: 'Curated list of premium directories that actually pass indexable backlinks.' },
6+
{ icon: '💰', title: 'Organized by DR & Price', description: 'Directories sorted by Domain Rating, cost, and niche category.' },
7+
{ icon: '', title: 'Zero-Effort Strategy', description: 'Just pay, submit your URL, and receive one-way backlinks. No outreach needed.' },
8+
{ icon: '🎯', title: 'Niche Categories', description: 'Find directories for startups, SaaS, tech tools, business, and more.' },
9+
{ icon: '📈', title: 'Tested Results', description: 'Verified across multiple projects and domains.' },
10+
{ icon: '🔄', title: 'Monthly Updates', description: 'Database continuously maintained with new directories added regularly.' }
11+
];
12+
13+
---
14+
15+
<BaseLayout
16+
title="DR Launcher - Simple Bytes"
17+
description="A paid guide to 30+ paid directories that help you launch your Domain Rating from 0 to 20 in weeks."
18+
>
19+
<a href="/" class="back-link">← Back to all projects</a>
20+
21+
<section class="hero">
22+
<h1>DR Launcher</h1>
23+
<p class="tagline">A paid guide to 30+ paid directories that help you go from DR 0 to 20 in weeks.</p>
24+
<div class="hero-badges">
25+
<span class="badge badge--paid">Paid</span>
26+
<span class="badge badge--guarantee">Money-Back Guarantee</span>
27+
</div>
28+
<div class="hero-links">
29+
<a href="https://www.drlauncher.com?ref=simplebytes" target="_blank" rel="noopener" class="btn btn--primary">
30+
Get DR Launcher →
31+
</a>
32+
</div>
33+
</section>
34+
35+
<section class="features-section">
36+
<h2 class="section-title">Features</h2>
37+
<div class="features-grid">
38+
{features.map((feature) => (
39+
<div class="feature-item">
40+
<span class="feature-icon">{feature.icon}</span>
41+
<h3 class="feature-title">{feature.title}</h3>
42+
<p class="feature-description">{feature.description}</p>
43+
</div>
44+
))}
45+
</div>
46+
</section>
47+
48+
<section class="how-section">
49+
<h2 class="section-title">How It Works</h2>
50+
<div class="how-content">
51+
<p>DR Launcher is a paid guide containing 30+ paid directories that accept submissions for a fee. Each directory has been tested to pass real, indexable backlinks.</p>
52+
<p>Browse the list, pick directories that match your niche and budget, pay for your listings, and build your domain authority.</p>
53+
</div>
54+
</section>
55+
56+
<section class="cta-section">
57+
<div class="cta-content">
58+
<span class="cta-icon">🚀</span>
59+
<h2>Ready to Boost Your DR?</h2>
60+
<p>Get lifetime access to our curated directory database. If you don't reach DR 20 after submitting to all directories, get a full refund.</p>
61+
<div class="cta-links">
62+
<a href="https://www.drlauncher.com?ref=simplebytes" target="_blank" rel="noopener" class="btn btn--primary">
63+
Get Started →
64+
</a>
65+
</div>
66+
</div>
67+
</section>
68+
</BaseLayout>
69+
70+
<style>
71+
.back-link {
72+
display: inline-flex;
73+
align-items: center;
74+
gap: 0.5rem;
75+
font-size: 0.875rem;
76+
color: var(--text-secondary);
77+
text-decoration: none;
78+
margin-bottom: 2rem;
79+
transition: color 0.2s;
80+
}
81+
82+
.back-link:hover {
83+
color: var(--text-primary);
84+
}
85+
86+
.hero {
87+
margin-bottom: 4rem;
88+
}
89+
90+
h1 {
91+
font-size: clamp(2.5rem, 6vw, 3.5rem);
92+
font-weight: 600;
93+
letter-spacing: -0.03em;
94+
margin-bottom: 1rem;
95+
}
96+
97+
.tagline {
98+
font-size: 1.25rem;
99+
color: var(--text-secondary);
100+
max-width: 600px;
101+
line-height: 1.6;
102+
margin-bottom: 1.5rem;
103+
}
104+
105+
.hero-badges {
106+
display: flex;
107+
gap: 0.5rem;
108+
margin-bottom: 1.5rem;
109+
flex-wrap: wrap;
110+
}
111+
112+
.badge {
113+
display: inline-block;
114+
font-size: 0.75rem;
115+
font-weight: 500;
116+
text-transform: uppercase;
117+
letter-spacing: 0.05em;
118+
padding: 0.375rem 0.75rem;
119+
border-radius: var(--radius-sm);
120+
}
121+
122+
.badge--paid {
123+
background: rgba(59, 130, 246, 0.1);
124+
color: #2563eb;
125+
}
126+
127+
:global([data-theme="dark"]) .badge--paid {
128+
background: rgba(59, 130, 246, 0.15);
129+
color: #60a5fa;
130+
}
131+
132+
.badge--guarantee {
133+
background: rgba(34, 197, 94, 0.1);
134+
color: #16a34a;
135+
}
136+
137+
:global([data-theme="dark"]) .badge--guarantee {
138+
background: rgba(34, 197, 94, 0.15);
139+
color: #4ade80;
140+
}
141+
142+
.hero-links {
143+
display: flex;
144+
flex-wrap: wrap;
145+
gap: 0.75rem;
146+
}
147+
148+
/* Features */
149+
.features-section {
150+
margin-bottom: 4rem;
151+
}
152+
153+
.features-grid {
154+
display: grid;
155+
grid-template-columns: repeat(3, 1fr);
156+
gap: 1.5rem;
157+
}
158+
159+
.feature-item {
160+
padding: 0.5rem 0;
161+
}
162+
163+
.feature-icon {
164+
font-size: 1.5rem;
165+
display: block;
166+
margin-bottom: 0.75rem;
167+
}
168+
169+
.feature-title {
170+
font-size: 1rem;
171+
font-weight: 600;
172+
margin-bottom: 0.375rem;
173+
}
174+
175+
.feature-description {
176+
font-size: 0.875rem;
177+
color: var(--text-secondary);
178+
line-height: 1.5;
179+
}
180+
181+
/* How section */
182+
.how-section {
183+
margin-bottom: 4rem;
184+
}
185+
186+
.how-content {
187+
max-width: 600px;
188+
}
189+
190+
.how-content p {
191+
color: var(--text-secondary);
192+
line-height: 1.7;
193+
margin-bottom: 1rem;
194+
}
195+
196+
.how-content p:last-child {
197+
margin-bottom: 0;
198+
}
199+
200+
/* CTA section */
201+
.cta-section {
202+
background: var(--card-bg);
203+
border: 1px solid var(--border-color);
204+
border-radius: var(--radius-xl);
205+
padding: 2.5rem;
206+
margin-bottom: 2rem;
207+
}
208+
209+
.cta-content {
210+
max-width: 600px;
211+
}
212+
213+
.cta-icon {
214+
font-size: 2rem;
215+
display: block;
216+
margin-bottom: 1rem;
217+
}
218+
219+
.cta-content h2 {
220+
font-size: 1.5rem;
221+
font-weight: 600;
222+
margin-bottom: 1rem;
223+
}
224+
225+
.cta-content p {
226+
color: var(--text-secondary);
227+
line-height: 1.6;
228+
margin-bottom: 1rem;
229+
}
230+
231+
.cta-links {
232+
margin-top: 1.5rem;
233+
}
234+
235+
@media (max-width: 768px) {
236+
h1 {
237+
font-size: 2rem;
238+
}
239+
240+
.tagline {
241+
font-size: 1rem;
242+
}
243+
244+
.features-grid {
245+
grid-template-columns: 1fr;
246+
}
247+
248+
.cta-section {
249+
padding: 1.5rem;
250+
}
251+
}
252+
</style>

src/pages/terms.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const appTerms = [
66
{ name: 'Doodlify', href: 'https://www.doodlify.ai/terms' },
77
{ name: 'EasyChef.ai', href: 'https://easychef.ai/terms' },
88
{ name: 'OG Image Preview', href: 'https://ogimagepreview.com/terms' },
9+
{ name: 'DR Launcher', href: 'https://www.drlauncher.com/terms' },
910
];
1011
---
1112

0 commit comments

Comments
 (0)