Skip to content

Commit

Permalink
clean up, metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem committed Dec 21, 2024
1 parent 6ddb101 commit 1a73aa9
Show file tree
Hide file tree
Showing 13 changed files with 70 additions and 166 deletions.
38 changes: 0 additions & 38 deletions docs/.vitepress/config.ts

This file was deleted.

44 changes: 0 additions & 44 deletions docs/.vitepress/theme/Layout.vue

This file was deleted.

11 changes: 0 additions & 11 deletions docs/.vitepress/theme/index.ts

This file was deleted.

14 changes: 0 additions & 14 deletions docs/.vitepress/theme/tailwind.postcss

This file was deleted.

43 changes: 0 additions & 43 deletions docs/index.md

This file was deleted.

51 changes: 46 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,55 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Build DAO - Turn your ideas into production-ready MVPs in weeks, not months" />
<meta charset="utf-8" />
<link rel="icon" href="/favicon.png" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="apple-touch-icon" href="/app.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json" />

<meta
name="description"
content="Build DAO - Turn your ideas into production-ready MVPs in weeks, not months"
/>
<title>Build DAO - Fast MVP Development</title>
<link rel="preconnect" href="https://images.unsplash.com">
<link rel="preconnect" href="https://images.unsplash.com" />

<!-- Open Graph Meta Tags -->
<meta property="og:url" content="https://hire.nearbuilders.org" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Build DAO" />
<meta
property="og:description"
content="Build DAO - Turn your ideas into production-ready MVPs in weeks, not months"
/>
<meta
property="og:image"
content="https://hire.nearbuilders.org/cover.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="627" />

<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="hire.nearbuilders.org" />
<meta property="twitter:url" content="https://hire.nearbuilders.org" />
<meta name="twitter:title" content="Build DAO" />
<meta
name="twitter:description"
content="Build DAO - Turn your ideas into production-ready MVPs in weeks, not months"
/>
<meta
name="twitter:image"
content="https://hire.nearbuilders.org/cover.png"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
</html>
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
]
},
"dependencies": {
"@tanstack/react-virtual": "^3.0.0",
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand Down
Binary file added public/app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"short_name": "BHIRE",
"name": "Hire Builders",
"icons": [
{
"src": "app.png",
"sizes": "1024x1024",
"type": "image/png"
}
],
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
12 changes: 6 additions & 6 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function Footer() {
</ul>
</div>

<div>
{/* <div>
<h3 className="text-lg font-semibold text-white mb-4">Resources</h3>
<ul className="space-y-2">
<li>
Expand All @@ -54,19 +54,19 @@ export default function Footer() {
</a>
</li>
</ul>
</div>
</div> */}

<div>
<h3 className="text-lg font-semibold text-white mb-4">Contact</h3>
<ul className="space-y-2">
<li>
<a href="mailto:hello@builddao.xyz" className="text-gray-400 hover:text-white transition-colors">
hello@builddao.xyz
<a href="mailto:hire@nearbuilders.org" className="text-gray-400 hover:text-white transition-colors">
hire@nearbuilders.org
</a>
</li>
<li>
<a href="https://discord.gg/builddao" className="text-gray-400 hover:text-white transition-colors">
Discord Community
<a href="https://nearbuilders.com/tg-builders" className="text-gray-400 hover:text-white transition-colors">
Telegram Community
</a>
</li>
</ul>
Expand Down
8 changes: 4 additions & 4 deletions src/pages/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import Hero from '../components/Hero';
import Projects from '../components/Projects';
import Builders from '../components/Builders';
// import Projects from '../components/Projects';
// import Builders from '../components/Builders';

export default function Home() {
return (
<div className="min-h-screen bg-gray-900">
<Hero />
<Projects />
<Builders />
{/* <Projects />
<Builders /> */}
</div>
);
}

0 comments on commit 1a73aa9

Please sign in to comment.