Skip to content

Commit

Permalink
inital rebrand
Browse files Browse the repository at this point in the history
adase11 committed Oct 4, 2024
1 parent e96de51 commit ee2c90a
Showing 14 changed files with 27 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
@@ -65,7 +65,7 @@ jobs:
env:
NODE_ENV: production
# Remove this line if you would like to skip using google analytics
REACT_APP_GA_TRACKING_ID: UA-68649021-1
REACT_APP_GA_TRACKING_ID: G-M6H0YTT6ND
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
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) 2024 Austin Dase

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "personal-site",
"version": "4.0.0",
"homepage": "https://mldangelo.com/",
"homepage": "https://dase.dev/",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mldangelo/personal-site.git"
"url": "https://github.com/adase11/personal-site"
},
"engines": {
"node": ">=16.x"
"node": "20"
},
"scripts": {
"analyze": "npm run build && source-map-explorer build/static/js/*.chunk.js",
2 changes: 1 addition & 1 deletion public/CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mldangelo.com
dase.dev
9 changes: 9 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -91,6 +91,15 @@
async
/>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M6H0YTT6ND"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-M6H0YTT6ND');
</script>

<body>
<div id="root"></div>
2 changes: 1 addition & 1 deletion src/__tests__/App.test.js
Original file line number Diff line number Diff line change
@@ -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("Austin Dase");
});

it('can navigate to /about', async () => {
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: "Austin Dase",
path: '/',
},
{
6 changes: 3 additions & 3 deletions src/layouts/Main.js
Original file line number Diff line number Diff line change
@@ -12,8 +12,8 @@ const Main = (props) => (
<Analytics />
<ScrollToTop />
<Helmet
titleTemplate="%s | Michael D'Angelo"
defaultTitle="Michael D'Angelo"
titleTemplate="%s | Austin Dase"
defaultTitle="Austin Dase"
defer={false}
>
{props.title && <title>{props.title}</title>}
@@ -41,7 +41,7 @@ Main.defaultProps = {
children: null,
fullPage: false,
title: null,
description: "Michael D'Angelo's personal website.",
description: "Austin Dase'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
@@ -21,7 +21,7 @@ const About = () => {
.filter((s) => s.length).length;

return (
<Main title="About" description="Learn about Michael D'Angelo">
<Main title="About" description="Learn about Austin Dase">
<article className="post markdown" id="about">
<header>
<div className="title">
2 changes: 1 addition & 1 deletion src/pages/Contact.js
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ import ContactIcons from '../components/Contact/ContactIcons';
const Contact = () => (
<Main
title="Contact"
description="Contact Michael D'Angelo via email @ hi@mldangelo.com"
description="Contact Austin Dase via email @ hi@dase.dev"
>
<article className="post" id="contact">
<header>
4 changes: 2 additions & 2 deletions src/pages/Index.js
Original file line number Diff line number Diff line change
@@ -6,8 +6,8 @@ import Main from '../layouts/Main';
const Index = () => (
<Main
description={
"Michael D'Angelo's personal website. New York based Stanford ICME graduate, "
+ 'VP of Engineering at Smile Identity, co-founder of Arthena and Matroid, and YC Alumni.'
"Austin Dase's personal website. DC based Software Engineer, "
+ 'Lead Software Engineer at Fundrise.'
}
>
<article className="post" id="index">
2 changes: 1 addition & 1 deletion src/pages/Projects.js
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ import Cell from '../components/Projects/Cell';
import data from '../data/projects';

const Projects = () => (
<Main title="Projects" description="Learn about Michael D'Angelo's projects.">
<Main title="Projects" description="Learn about Austin Dase's projects.">
<article className="post" id="projects">
<header>
<div className="title">
2 changes: 1 addition & 1 deletion src/pages/Resume.js
Original file line number Diff line number Diff line change
@@ -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="Austin Dase's Resume."
>
<article className="post" id="resume">
<header>
2 changes: 1 addition & 1 deletion src/pages/Stats.js
Original file line number Diff line number Diff line change
@@ -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 Austin Dase and mldangelo.com"
>
<article className="post" id="stats">
<header>

0 comments on commit ee2c90a

Please sign in to comment.