Skip to content

Commit 0c06d36

Browse files
committed
feat: update live demo links
1 parent 553235c commit 0c06d36

9 files changed

Lines changed: 10 additions & 9 deletions

File tree

astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import sitemap from '@astrojs/sitemap';
55

66
// https://astro.build/config
77
export default defineConfig({
8-
site: 'https://libredb.github.io',
8+
site: 'https://libredb.org',
99
integrations: [tailwind(), sitemap()],
1010
build: {
1111
assets: 'assets'

public/CNAME

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

public/robots.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
User-agent: *
22
Allow: /
33

4-
Sitemap: https://libredb.github.io/sitemap-index.xml
4+
Sitemap: https://libredb.org/sitemap-index.xml

src/components/BottomNav.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</a>
2121

2222
<a
23-
href="https://demo.libredb.studio"
23+
href="https://app.libredb.org"
2424
target="_blank"
2525
rel="noopener noreferrer"
2626
class="flex flex-col items-center justify-center -mt-4"

src/components/Databases.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const databases = [
7171
</div>
7272
</div>
7373
<a
74-
href="https://demo.libredb.studio"
74+
href="https://app.libredb.org"
7575
target="_blank"
7676
rel="noopener noreferrer"
7777
class="w-full md:w-auto px-6 py-2 bg-primary-600 hover:bg-primary-500 text-white text-sm font-medium rounded-lg transition-colors text-center"

src/components/Footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const sections = [
99
{ label: "Features", href: "#features" },
1010
{ label: "Databases", href: "#databases" },
1111
{ label: "Tech Stack", href: "#tech-stack" },
12-
{ label: "Live Demo", href: "https://demo.libredb.studio", external: true },
12+
{ label: "Live Demo", href: "https://app.libredb.org", external: true },
1313
],
1414
},
1515
{

src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<!-- CTA Buttons -->
2323
<div class="flex items-center gap-2 md:gap-4">
2424
<a
25-
href="https://demo.libredb.studio"
25+
href="https://app.libredb.org"
2626
target="_blank"
2727
rel="noopener noreferrer"
2828
class="hidden sm:inline-flex items-center gap-2 px-3 md:px-4 py-2 text-sm font-medium text-slate-300 hover:text-white transition-colors"

src/components/Hero.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<!-- CTA Buttons -->
4646
<div class="flex flex-col sm:flex-row items-center justify-center gap-3 md:gap-4 mb-10 md:mb-16 px-4">
4747
<a
48-
href="https://demo.libredb.studio"
48+
href="https://app.libredb.org"
4949
target="_blank"
5050
rel="noopener noreferrer"
5151
class="w-full sm:w-auto inline-flex items-center justify-center gap-2 px-6 md:px-8 py-3 md:py-4 bg-gradient-to-r from-primary-600 to-accent-600 text-white font-semibold rounded-xl transition-all hover:shadow-2xl hover:shadow-primary-600/30 hover:scale-105"

src/layouts/Layout.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ const { title, description = "LibreDB Studio - The Modern, AI-Powered Open-Sourc
1919
<meta property="og:title" content={title} />
2020
<meta property="og:description" content={description} />
2121
<meta property="og:type" content="website" />
22-
<meta property="og:url" content="https://libredb.github.io" />
23-
<meta property="og:image" content="https://libredb.github.io/og-image.png" />
22+
<meta property="og:url" content="https://libredb.org" />
23+
<meta property="og:image" content="https://libredb.org/og-image.png" />
2424

2525
<!-- Twitter -->
2626
<meta name="twitter:card" content="summary_large_image" />

0 commit comments

Comments
 (0)