Skip to content

Commit

Permalink
info: change all names to Aida Ren
Browse files Browse the repository at this point in the history
  • Loading branch information
nmrenyi committed Dec 6, 2023
1 parent aae46a6 commit 4a27950
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Michael D'Angelo
Copyright (c) 2023 Aida Ren

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/App.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('renders the app', () => {
});

it('should render the title', async () => {
expect(document.title).toBe("Michael D'Angelo");
expect(document.title).toBe("Aida Ren");
});

it('can navigate to /about', async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/data/routes.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const routes = [
{
index: true,
label: "Michael D'Angelo",
label: 'Aida Ren',
path: '/',
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/layouts/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Main = (props) => (
<HelmetProvider>
<Analytics />
<ScrollToTop />
<Helmet titleTemplate="%s | Michael D'Angelo" defaultTitle="Michael D'Angelo" defer={false}>
<Helmet titleTemplate="%s | Aida Ren" defaultTitle="Aida Ren" defer={false}>
{props.title && <title>{props.title}</title>}
<meta name="description" content={props.description} />
</Helmet>
Expand Down Expand Up @@ -39,7 +39,7 @@ Main.defaultProps = {
children: null,
fullPage: false,
title: null,
description: "Michael D'Angelo's personal website.",
description: "Aida Ren's personal website.",
};

export default Main;
2 changes: 1 addition & 1 deletion src/pages/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const About = () => {
return (
<Main
title="About"
description="Learn about Michael D'Angelo"
description="Learn about Aida Ren"
>
<article className="post markdown" id="about">
<header>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ContactIcons from '../components/Contact/ContactIcons';
const Contact = () => (
<Main
title="Contact"
description="Contact Michael D'Angelo via email @ [email protected]"
description="Contact Aida Ren via email @ [email protected]"
>
<article className="post" id="contact">
<header>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import data from '../data/projects';
const Projects = () => (
<Main
title="Projects"
description="Learn about Michael D'Angelo's projects."
description="Learn about Aida Ren's projects."
>
<article className="post" id="projects">
<header>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Resume.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const sections = {
const Resume = () => (
<Main
title="Resume"
description="Michael D'Angelo's Resume. Smile Identity, Arthena, Matroid, YC, Skeptical Investments, Stanford ICME, Planet, and Facebook."
description="Aida Ren's Resume. Smile Identity, Arthena, Matroid, YC, Skeptical Investments, Stanford ICME, Planet, and Facebook."
>
<article className="post" id="resume">
<header>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Site from '../components/Stats/Site';
const Stats = () => (
<Main
title="Stats"
description="Some statistics about Michael D'Angelo and mldangelo.com"
description="Some statistics about Aida Ren and mldangelo.com"
>
<article className="post" id="stats">
<header>
Expand Down

0 comments on commit 4a27950

Please sign in to comment.