Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: small design fixes #36

Merged
merged 1 commit into from
Nov 2, 2023
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
8 changes: 4 additions & 4 deletions app/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ export default function Footer() {
<footer className="p-3 sm:p-6 mt-24">
<div className="container max-w-4xl mx-auto pt-8">
<div className="flex flex-col md:flex-row justify-between">
<div className="flex items-baseline">
<div className="flex flex-col md:flex-row gap-4 items-baseline">
<Link className="font-black tracking-tighter text-xl" to="/">
BackyTracky™
</Link>
<Link className="ml-8 text-xs opacity-50" to="/tracks">
<Link className="text-xs opacity-50" to="/tracks">
Tracks
</Link>
<Link className="ml-8 text-xs opacity-50" to="/generator">
<Link className="text-xs opacity-50" to="/generator">
Sequencer
</Link>
<Link className="ml-8 text-xs opacity-50" to="/tuner">
<Link className="text-xs opacity-50" to="/tuner">
Guitar Tuner
</Link>
</div>
Expand Down
4 changes: 1 addition & 3 deletions app/components/PageHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ export default function PageHeader({
}) {
return (
<section className="border-b border-zinc-500 border-opacity-10 bg-gradient-to-b from-zinc-50 to-white dark:from-zinc-900 dark:to-gray-1000">
<div className="bg-white dark:bg-black absolute top-0 left-0 right-0 h-1 -z-10">
<div className="color-change z-10 w-full top-0 h-full bg-opacity-10 absolute pointer-events-none"></div>
</div>
<div className="bg-white dark:bg-black absolute top-0 left-0 right-0 h-1 -z-10" />
<div className="max-w-4xl mx-auto relative">
<div className="page-header__breadcrumbs">{children}</div>
<h1 className="font-black">{title}</h1>
Expand Down
77 changes: 40 additions & 37 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@ export const meta: MetaFunction = () => {
export default function Index() {
return (
<main className="main relative">
<div className="bg-white dark:bg-black absolute -top-32 left-0 right-0 h-[280px] -z-10 rotate-1">
<div className="color-change z-10 w-full top-0 h-full bg-opacity-10 absolute pointer-events-none"></div>
<div className="overflow-hidden absolute w-full h-[360px] -top-32 pointer-events-none ">
<div className="bg-white dark:bg-black absolute -top-16 left-0 right-0 h-full -z-10 rotate-1 border-b border-zinc-500 border-opacity-10" />
</div>
<section className="relative">
<BackgroundNotes />
<div className="container max-w-4xl mx-auto pt-8 relative z-10">
<div className="bt-prose mx-auto my-12">
<h1 className="mb-0 rounded-md relative -ml-2 inline-block px-1 font-black">
Welcome to BackyTracky
Welcome to <br />
<span className="md:text-6xl">BackyTracky</span>
</h1>
<p className="max-w-lg bg-zinc-50 dark:bg-zinc-900 bg-opacity-10 rounded-md">
<span className="sr-only">Free </span>
Expand All @@ -37,42 +38,44 @@ export default function Index() {
ahead and try making something of your own! Practice scales, licks
or solos.
</p>
<Link
className="button no-underline px-8 dark:text-white"
to="/tracks"
>
<span>see some tracks</span>
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
<div className="flex flex-col md:flex-row gap-4">
<Link
className="button no-underline px-8 dark:text-white"
to="/tracks"
>
<path
fillRule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z"
clipRule="evenodd"
/>
</svg>
</Link>
<Link
className="button button--submit no-underline px-8 ml-4 dark:text-white"
to="/generator"
>
<span>make your own</span>
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
<span>see some tracks</span>
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fillRule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z"
clipRule="evenodd"
/>
</svg>
</Link>
<Link
className="button button--submit no-underline px-8 dark:text-white"
to="/generator"
>
<path
fillRule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z"
clipRule="evenodd"
/>
</svg>
</Link>
<span>make your own</span>
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fillRule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z"
clipRule="evenodd"
/>
</svg>
</Link>
</div>
</div>
</div>
</section>
Expand Down