Skip to content
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
1 change: 1 addition & 0 deletions apps/landing/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# build output
dist/
.vercel/
# generated types
.astro/

Expand Down
4 changes: 3 additions & 1 deletion apps/landing/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ import { defineConfig } from 'astro/config';

import react from '@astrojs/react';
import sitemap from '@astrojs/sitemap';
import vercel from '@astrojs/vercel';

// https://astro.build/config
export default defineConfig({
site: 'https://urbackend.bitbros.in',
integrations: [react(), sitemap()]
integrations: [react(), sitemap()],
adapter: vercel()
});
4 changes: 3 additions & 1 deletion apps/landing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"dependencies": {
"@astrojs/react": "^4.x",
"@astrojs/sitemap": "^3.x",
"@astrojs/vercel": "^9.0.0",
"@vercel/analytics": "^2.0.1",
"astro": "^5.0.0",
"framer-motion": "^11.0.0",
"gsap": "^3.12.0",
Expand All @@ -23,4 +25,4 @@
"react-dom": "^19.0.0",
"three": "^0.170.0"
}
}
}
2 changes: 2 additions & 0 deletions apps/landing/src/layouts/Base.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ interface Props {
}
const { title, description, canonicalUrl, ogImage } = Astro.props;
import '../styles/landing.css';
import Analytics from '@vercel/analytics/astro';
---
<!DOCTYPE html>
<html lang="en">
<head>
<Analytics />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/LOGO_SQ.png" />
Expand Down
Loading
Loading