Skip to content

Commit d54c3a6

Browse files
committed
feat: Update landing page and metadata for Data Acorns
Refactors the landing page content, branding, and metadata to clearly establish "Data Acorns" as the application name. Updates the README with deployment instructions and enhances SEO with Open Graph and Twitter meta tags. Includes a new `CNAME` file and an `og-image.svg` for social sharing.
1 parent 8c491f6 commit d54c3a6

5 files changed

Lines changed: 49 additions & 8 deletions

File tree

App.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import FreeStuff from './src/projects/FreeStuff';
1010
const PROJECTS = [
1111
{
1212
id: 'shellgame',
13-
name: 'ShellGame Suite',
13+
name: 'Ecosystem Navigator',
1414
description: 'R Packages & Audit Protocol',
1515
icon: Database,
1616
status: 'active'
@@ -49,7 +49,7 @@ const GlobalNav = ({ activeProject, setActiveProject }: { activeProject: string,
4949
<div className="flex items-center gap-4">
5050
<div className="flex items-center gap-2">
5151
<span className="text-[10px] font-mono font-bold tracking-[0.3em] uppercase text-stone-400">
52-
Data Journey
52+
Data Acorns
5353
</span>
5454
</div>
5555

@@ -65,7 +65,7 @@ const GlobalNav = ({ activeProject, setActiveProject }: { activeProject: string,
6565
</div>
6666

6767
<div className="hidden md:flex items-center gap-4 text-[10px] font-mono uppercase tracking-widest text-stone-500">
68-
<span>Ecosystem Navigator</span>
68+
<span>Data Journey</span>
6969
</div>
7070
</div>
7171

README.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
1-
I have not liked "portfolio" pages.
2-
The best I could come up with is giving projects their own ecoverse. And while, I think of things in terms of big picture I recognize each project has
3-
its own vibe which is why they get their own space.
1+
<div align="center">
2+
<img width="1200" height="475" alt="GHBanner" src="https://github.com/user-attachments/assets/0aa67016-6eaf-458a-adb2-6e31a0763ed6" />
3+
</div>
44

5-
This is not a complete record. We are at three projects in here currently.
6-
And the apps that are just makes.
5+
# Run and deploy your AI Studio app
76

7+
This contains everything you need to run your app locally.
88

9+
View your app in AI Studio: https://ai.studio/apps/df2d31a9-7c1b-432e-b2bb-1ae090a692f3
10+
11+
## Run Locally
12+
13+
**Prerequisites:** Node.js
14+
15+
16+
1. Install dependencies:
17+
`npm install`
18+
2. Set the `GEMINI_API_KEY` in [.env.local](.env.local) to your Gemini API key
19+
3. Run the app:
20+
`npm run dev`

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>Data Acorns | The Shell Game</title>
77
<meta name="description" content="A documentation of shellgame and geoDeltaAudit R packages, documenting and quantifying perturbation in population data workflows." />
8+
9+
<!-- Open Graph / Facebook -->
10+
<meta property="og:type" content="website" />
11+
<meta property="og:url" content="https://dataacorns.com/" />
12+
<meta property="og:title" content="Data Acorns | The Shell Game" />
13+
<meta property="og:description" content="Quantifying perturbation in geographic population data. Insights from the shellgame and geoDeltaAudit R packages." />
14+
<meta property="og:image" content="https://dataacorns.com/og-image.svg" />
15+
16+
<!-- Twitter -->
17+
<meta property="twitter:card" content="summary_large_image" />
18+
<meta property="twitter:url" content="https://dataacorns.com/" />
19+
<meta property="twitter:title" content="Data Acorns | The Shell Game" />
20+
<meta property="twitter:description" content="Quantifying perturbation in geographic population data. Insights from the shellgame and geoDeltaAudit R packages." />
21+
<meta property="twitter:image" content="https://dataacorns.com/og-image.svg" />
822
<script src="https://cdn.tailwindcss.com"></script>
923
<link rel="preconnect" href="https://fonts.googleapis.com">
1024
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

public/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dataacorns.com

public/og-image.svg

Lines changed: 14 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)