Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@import "tailwindcss";
body {
font-family: 'Inter', sans-serif;
background-color: #0f172a;
color: #e2e8f0;
overscroll-behavior-y: none;
}

.fade-in {
animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
59 changes: 28 additions & 31 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

<!DOCTYPE html>
<html lang="en">
<head>

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="theme-color" content="#0f172a" />

<!-- Primary Meta Tags -->
<title>EarVibes - Chord Progression Trainer</title>
<meta name="title" content="EarVibes - Chord Progression Trainer">
Expand All @@ -31,41 +31,38 @@

<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "EarVibes - Chord Progression Trainer",
"description": "Master chord progressions with EarVibes. Interactive ear training for musicians. Learn Jazz, Rock, Pop, and City Pop harmony.",
"url": "https://earvibes.app/",
"applicationCategory": "EducationalApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "EarVibes"
},
"keywords": "ear training, music theory, chord progressions, jazz harmony, city pop, perfect pitch, musician tools"
}
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "EarVibes - Chord Progression Trainer",
"description": "Master chord progressions with EarVibes. Interactive ear training for musicians. Learn Jazz, Rock, Pop, and City Pop harmony.",
"url": "https://earvibes.app/",
"applicationCategory": "EducationalApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "EarVibes"
},
"keywords": "ear training, music theory, chord progressions, jazz harmony, city pop, perfect pitch, musician tools"
}
</script>

<link rel="stylesheet" href="./global.css" />
<link rel="manifest" href="./manifest.json" />
<link rel="icon" type="image/svg+xml" href="./icon.svg" />
<link rel="apple-touch-icon" href="./icon.svg" />

<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; background-color: #0f172a; color: #e2e8f0; overscroll-behavior-y: none; }
.fade-in { animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
</style>
</head>
<body>

<body>

<div id="root"></div>
<script type="module" src="/index.tsx"></script>
<script type="module" src="/index.tsx"></script>
</body>

</html>
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.17",
"babel-plugin-react-compiler": "^1.0.0",
"clsx": "^2.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^9.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"tone": "^15.0.4",
"ts-pattern": "^5.9.0"
},
Expand Down
Loading