Skip to content

Commit e9a462f

Browse files
committed
chore: Update GitHub repository URL in README and Svelte page, and improve Svelte code formatting for readability.
1 parent 06e895c commit e9a462f

2 files changed

Lines changed: 62 additions & 16 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Each exchange is manual, error-prone, and slow. DevCard fixes this.
5151

5252
```bash
5353
# Clone the repo
54-
git clone https://github.com/your-org/devcard.git
54+
git clone https://github.com/Dev-Card/DevCard.git
5555
cd devcard
5656

5757
# Install dependencies

apps/web/src/routes/+page.svelte

Lines changed: 61 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<svelte:head>
22
<title>DevCard — One Tap. Every Profile. Every Platform.</title>
3-
<meta name="description" content="Open source developer profile exchange platform. Share all your developer profiles with one QR code." />
3+
<meta
4+
name="description"
5+
content="Open source developer profile exchange platform. Share all your developer profiles with one QR code."
6+
/>
47
</svelte:head>
58

69
<main class="landing">
@@ -13,7 +16,12 @@
1316
DevCard puts every profile in one shareable QR code.
1417
</p>
1518
<div class="cta-group">
16-
<a href="https://github.com/your-org/devcard" class="btn btn-primary" target="_blank" rel="noopener">
19+
<a
20+
href="https://github.com/Dev-Card/DevCard"
21+
class="btn btn-primary"
22+
target="_blank"
23+
rel="noopener"
24+
>
1725
⭐ Star on GitHub
1826
</a>
1927
<a href="#features" class="btn btn-secondary">Learn More ↓</a>
@@ -24,38 +32,62 @@
2432
<div class="feature-card">
2533
<div class="feature-icon">🔗</div>
2634
<h3>One Card, All Profiles</h3>
27-
<p>GitHub, LinkedIn, Twitter/X, Devfolio, GitLab, LeetCode, and 10+ more — all in one card.</p>
35+
<p>
36+
GitHub, LinkedIn, Twitter/X, Devfolio, GitLab, LeetCode, and 10+ more —
37+
all in one card.
38+
</p>
2839
</div>
2940
<div class="feature-card">
3041
<div class="feature-icon">⚡</div>
3142
<h3>Hybrid Follow Engine</h3>
32-
<p>Follow on GitHub silently via API. Connect on LinkedIn with one tap in WebView. No app switching.</p>
43+
<p>
44+
Follow on GitHub silently via API. Connect on LinkedIn with one tap in
45+
WebView. No app switching.
46+
</p>
3347
</div>
3448
<div class="feature-card">
3549
<div class="feature-icon">💳</div>
3650
<h3>Context Cards</h3>
37-
<p>Share your "Professional" card at conferences and "Hackathon" card at hack events. Same profiles, different contexts.</p>
51+
<p>
52+
Share your "Professional" card at conferences and "Hackathon" card at
53+
hack events. Same profiles, different contexts.
54+
</p>
3855
</div>
3956
<div class="feature-card">
4057
<div class="feature-icon">📱</div>
4158
<h3>QR + AirDrop</h3>
42-
<p>Generate a QR code or share via AirDrop-style link. Works even if the receiver doesn't have the app.</p>
59+
<p>
60+
Generate a QR code or share via AirDrop-style link. Works even if the
61+
receiver doesn't have the app.
62+
</p>
4363
</div>
4464
<div class="feature-card">
4565
<div class="feature-icon">🔒</div>
4666
<h3>Privacy First</h3>
47-
<p>No data monetization. No tracking. Apache 2.0 licensed. You own your data.</p>
67+
<p>
68+
No data monetization. No tracking. Apache 2.0 licensed. You own your
69+
data.
70+
</p>
4871
</div>
4972
<div class="feature-card">
5073
<div class="feature-icon">🌍</div>
5174
<h3>Open Source</h3>
52-
<p>Community-driven development. Contribute, self-host, or extend with your own platforms.</p>
75+
<p>
76+
Community-driven development. Contribute, self-host, or extend with your
77+
own platforms.
78+
</p>
5379
</div>
5480
</section>
5581

5682
<footer class="footer">
5783
<p>DevCard — Open Source Developer Profile Exchange</p>
58-
<p>Apache 2.0 License • <a href="https://github.com/your-org/devcard" target="_blank" rel="noopener">GitHub</a></p>
84+
<p>
85+
Apache 2.0 License • <a
86+
href="https://github.com/Dev-Card/DevCard"
87+
target="_blank"
88+
rel="noopener">GitHub</a
89+
>
90+
</p>
5991
</footer>
6092
</main>
6193

@@ -78,8 +110,13 @@
78110
}
79111
80112
@keyframes float {
81-
0%, 100% { transform: translateY(0); }
82-
50% { transform: translateY(-10px); }
113+
0%,
114+
100% {
115+
transform: translateY(0);
116+
}
117+
50% {
118+
transform: translateY(-10px);
119+
}
83120
}
84121
85122
h1 {
@@ -158,7 +195,9 @@
158195
border: 1px solid var(--border);
159196
border-radius: var(--radius-lg);
160197
padding: 2rem;
161-
transition: transform 0.2s ease, border-color 0.2s ease;
198+
transition:
199+
transform 0.2s ease,
200+
border-color 0.2s ease;
162201
}
163202
164203
.feature-card:hover {
@@ -195,8 +234,15 @@
195234
}
196235
197236
@media (max-width: 600px) {
198-
h1 { font-size: 2.5rem; }
199-
.hero { padding: 3rem 0 2rem; }
200-
.cta-group { flex-direction: column; align-items: center; }
237+
h1 {
238+
font-size: 2.5rem;
239+
}
240+
.hero {
241+
padding: 3rem 0 2rem;
242+
}
243+
.cta-group {
244+
flex-direction: column;
245+
align-items: center;
246+
}
201247
}
202248
</style>

0 commit comments

Comments
 (0)