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

chore: shorten site name #88

Merged
merged 6 commits into from
Aug 24, 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
1 change: 1 addition & 0 deletions frontend/src/app/colophon/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ const ColophonPage = () => {
Cool 3D <Link href="https://csspro.com/css-3d-buttons/">Button 13</Link> for the Index Hero. Taken from
CSSPro.com and apparently inspired by Balder's Gate 3.
</li>
<li><Link href="https://www.svgrepo.com/svg/133672/blood-drop">Blood Drop SVG</Link> as list markers from SVGRepo.com</li>
</ul>
</div>
</section>
Expand Down
12 changes: 3 additions & 9 deletions frontend/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ import { Navbar } from './components/nav';
import { Footer } from './components/footer';
import { Analytics } from '@vercel/analytics/react';
import { SpeedInsights } from '@vercel/speed-insights/next';
import { SandpackCSS } from './blog/[slug]/sandpack';
import { BackToTop } from '@components/_basics/BackToTop';

export const metadata: Metadata = {
metadataBase: new URL('https://sabrinamedwinter.com'),
title: {
default: 'Sabrina Medwinter',
template: '%s | Sabrina Medwinter',
default: 'Sab Medwinter',
template: '%s | Sab Medwinter',
},
description:
'Unlocking the digital realm with a fusion of Jamaican web development prowess and captivating 3D artistry.',
Expand Down Expand Up @@ -46,22 +45,17 @@ export const metadata: Metadata = {
twitter: {
title: 'Sabrina Medwinter',
card: 'summary_large_image',
site: '@SabMedwinter',
site: '@Medwinters',
},
// verification: {
// google: '',
// yandex: '',
// },
};

const cx = (...classes) => classes.filter(Boolean).join(' ');

export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<head>
<SandpackCSS />
</head>
<body>
<main>
<Navbar />
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export default function NotFound() {
return (
<section>
<h1>Oh no! This page doesn't exist.</h1>
<p>If you expected to see something here, let me know ([email protected]).</p>
<p>If you expected to see something here, let me know at [email protected].</p>
</section>
);
}
1 change: 0 additions & 1 deletion frontend/src/assets/images/Sitename.svg

This file was deleted.

45 changes: 45 additions & 0 deletions frontend/src/assets/images/blood-drop.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions frontend/src/styles/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -544,8 +544,8 @@ li {
text-indent: 1rem;

&::marker {
content: '🩸';
font-size: 1rem;
content: url(../assets/images/blood-drop.svg);
scale: 0.75;
margin-bottom: 0.75rem;
}
}
Expand Down
14 changes: 6 additions & 8 deletions frontend/src/styles/modules/nav.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@
align-self: center;

&:hover {
// opacity: 0.75;
// filter: invert(9%) sepia(22%) saturate(4893%) hue-rotate(6deg) brightness(95%) contrast(102%);
color: var(--secondary);
filter: invert(9%) sepia(22%) saturate(4893%) hue-rotate(6deg) brightness(95%) contrast(102%);
}

@include breakpoint-range($from: mobile) {
Expand All @@ -61,22 +59,22 @@
&::before {
content: 'Sabrina';
color: var(--textColor);
font-size: clamp(2.5rem, 10vw, 8rem);
font-size: clamp(4rem, 10vw, 8rem);
font-family: "Cattedrale Rough";
text-transform: capitalize;
margin: 0;
letter-spacing: -2px;
user-select: none;
pointer-events: none;
text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4),
0px 8px 13px rgba(0, 0, 0, 0.1),
0px 18px 23px rgba(0, 0, 0, 0.1);
}
}

@include breakpoint-range($from: desktopSmall) {
&::before {
margin-left: 4rem;
text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4),
0px 8px 13px rgba(0, 0, 0, 0.1),
0px 18px 23px rgba(0, 0, 0, 0.1);
}
}

Expand All @@ -92,4 +90,4 @@
// background-repeat: no-repeat;
// background-position: cover;
// }
}
}
Loading