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

[refactor] update to hack for impact #4

Merged
merged 1 commit into from
Jan 7, 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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hack the Bay Website
# Hack for Impact Website

A website made for the Hack the Bay collegiate hackathon.
A website made for the 2024 Hack for Impact collegiate hackathon.

### Installation

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "hack-the-bay",
"name": "hack-for-impact",
"type": "module",
"version": "0.0.1",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<main>
<div>
<h3 class="gray">Cal Hacks x Blueprint</h3>
<h1>Hack the Bay</h1>
<h1>Hack for Impact</h1>
<div class="spacer"></div>
</div>
<div>
Expand Down
5 changes: 4 additions & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ const { title } = Astro.props;
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Astro description" />
<meta
name="description"
content="We are connecting a community of leaders, creators, and change makers to tackle social challenges."
/>
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Contact from '../components/Contact.astro';
import Footer from '../components/Footer.astro';
---

<Layout title="Hack the Bay">
<Layout title="Hack for Impact">
<Container>
<Header />
<About />
Expand Down