Skip to content

Commit

Permalink
[s1lvax#56] fix: Changed "Tech Stack" title to "Skills"
Browse files Browse the repository at this point in the history
  • Loading branch information
amananand20 committed Oct 21, 2024
1 parent 6b3678e commit c01620e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Route is a platform that allows users to easily share their favourite links, tec
## 🎮 Features

- Showcase your favorite links like Linktree
- Showcase your Tech Stack with a cool design
- Showcase your Skills with a cool design
- Automatically show your Github stats
- Shareable link at `https://route2.dev/yourusername`

## 🔮 Tech Stack
## 🔮 Skills

- **FullStack Framework**: SvelteKit
- **Styling**: Shadcn-Svelte && Tailwind
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/PublicProfile/PublicProfile.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<BasicInfo {githubData} {userData} />
<GithubStats {githubData} />

<!-- Links and Tech Stack Side by Side -->
<!-- Links and Skills Side by Side -->
<div class="mt-8 grid gap-4 md:grid-cols-2">
<Links {userData} />
<TechStack {userData} />
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/PublicProfile/TechStack.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
});
</script>

<!-- Tech Stack Section -->
<!-- Skills Section -->
<Card.Root>
<Card.Header>
<Card.Title>Tech Stack</Card.Title>
<Card.Title>Skills</Card.Title>
<Card.Description>Explore the developer's skills and expertise</Card.Description>
</Card.Header>
<Card.Content class="grid gap-4">
Expand Down
2 changes: 1 addition & 1 deletion src/lib/constants/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const features = [
icon: Github
},
{
name: 'Tech Stack',
name: 'Skills',
description: 'Showcase your preferred tools and technologies with sleek graphs.',
icon: ChartArea
},
Expand Down
2 changes: 1 addition & 1 deletion src/routes/profile/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

<Card.Root>
<Card.Header>
<Card.Title>Tech Stack</Card.Title>
<Card.Title>Skills</Card.Title>
<Card.Description>You can drag skills around to modify the order</Card.Description>
<SkillsForm
data={data.skillsForm}
Expand Down

0 comments on commit c01620e

Please sign in to comment.