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

(new) new logos #122

Merged
merged 5 commits into from
Oct 16, 2024
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
9 changes: 2 additions & 7 deletions app/components/docs-header/docs-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,11 @@ function LogoLink() {
}}
>
<svg
aria-label="React Router logo, nine dots in an upward triangle (one on top, two in the middle, three on the bottom) with a path of three highlighted and connected from top to bottom"
className="h-14 w-14 md:h-12 md:w-12"
aria-label="React Router logo, nine dots in an upward triangle (one on top, two in the middle, three on the bottom) with a path of three highlighted and connected from top to bottom, next to the text React Router"
className="h-14 w-40"
>
<use href={`${iconsHref}#logo`} />
</svg>
<div className="hidden md:block">
<svg aria-label="React Router" className="h-6 w-40">
<use href={`${iconsHref}#logotype`} />
</svg>
</div>
</Link>
);
}
Expand Down
46 changes: 22 additions & 24 deletions app/icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 4 additions & 14 deletions app/pages/brand.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,14 @@ export default function Brand() {
</p>

<AssetHeader>Lockup</AssetHeader>
<AssetSubHeader>Horizontal</AssetSubHeader>
<div className="grid grid-cols-2 gap-4 gap-x-6">
<Logos title="Lockup" subTitle="Horizontal" />
<Logos title="Lockup" subTitle="Horizontal" oneColor />
<Logos title="Lockup" />
<Logos title="Lockup" oneColor />
</div>

<AssetSubHeader>Vertically Stacked</AssetSubHeader>
<AssetHeader>Wordmark</AssetHeader>
<AssetsGrid>
<Logos title="Lockup" subTitle="Vertically Stacked" />
<Logos title="Lockup" subTitle="Vertically Stacked" oneColor />
<Logos title="Wordmark" />
</AssetsGrid>

<AssetHeader>Logo</AssetHeader>
Expand All @@ -75,14 +73,6 @@ function AssetHeader({ children }: { children: React.ReactNode }) {
);
}

function AssetSubHeader({ children }: { children: React.ReactNode }) {
return (
<h3 className="text-lg font-extrabold dark:text-gray-200 md:text-2xl">
{children}
</h3>
);
}

function AssetsGrid({ children }: { children: React.ReactNode }) {
return <div className="grid grid-cols-2 gap-4 gap-x-6">{children}</div>;
}
Expand Down
Loading