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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<p align="center">
<a href="https://opendsa.vercel.app">Website</a>
·
<a href="https://app.opendsa.vercel.app">Launch App</a>
<a href="https://app-opendsa.vercel.app">Launch App</a>
·
<a href="https://docs.opendsa.vercel.app">Documentation</a>
<a href="https://docs-opendsa.vercel.app">Documentation</a>
·
<a href="https://discord.gg/mfQvUa2y4r">Discord</a>
</p>
Expand Down Expand Up @@ -83,7 +83,7 @@ OpenDSA makes complex algorithms visual and intuitive.

### Try Online

Visit [app.opendsa.dev](https://app.opendsa.vercel.app) to start visualizing algorithms immediately - no installation required.
Visit [app.opendsa.dev](https://app-opendsa.vercel.app) to start visualizing algorithms immediately - no installation required.

### Run Locally

Expand Down
2 changes: 1 addition & 1 deletion apps/app/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const jetbrainsMono = JetBrains_Mono({
display: "swap",
});

const siteUrl = "https://app.opendsa.vercel.app"; // TODO: Change to https://app.opendsa.dev after domain purchase
const siteUrl = "https://app-opendsa.vercel.app"; // TODO: Change to https://app.opendsa.dev after domain purchase

export const metadata: Metadata = {
metadataBase: new URL(siteUrl),
Expand Down
2 changes: 1 addition & 1 deletion apps/app/src/app/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export default function NotFound() {
<Link href="https://opendsa.vercel.app" style={{ color: "inherit", textDecoration: "none" }}>
→ website
</Link>
<Link href="https://docs.opendsa.vercel.app" style={{ color: "inherit", textDecoration: "none" }}>
<Link href="https://docs-opendsa.vercel.app" style={{ color: "inherit", textDecoration: "none" }}>
→ docs
</Link>
<Link href="https://github.com/soloshun/opendsa" style={{ color: "inherit", textDecoration: "none" }}>
Expand Down
2 changes: 1 addition & 1 deletion apps/app/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ export default function ComingSoon() {
</Link>

<Link
href="https://docs.opendsa.vercel.app"
href="https://docs-opendsa.vercel.app"
target="_blank"
rel="noopener noreferrer"
style={{
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/app/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const inter = Inter({
weight: ["100", "200", "300", "400", "500", "600", "700"],
});

const siteUrl = "https://docs.opendsa.vercel.app"; // TODO: Change to https://docs.opendsa.dev after domain purchase
const siteUrl = "https://docs-opendsa.vercel.app"; // TODO: Change to https://docs.opendsa.dev after domain purchase

export const metadata = {
metadataBase: new URL(siteUrl),
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/app/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ OpenDSA makes complex algorithms visual and intuitive.

### Try Online

Visit [app.opendsa.dev](https://app.opendsa.vercel.app) to start visualizing algorithms immediately - no installation required.
Visit [app.opendsa.dev](https://app-opendsa.vercel.app) to start visualizing algorithms immediately - no installation required.

### Run Locally

Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/app/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,14 +228,14 @@ export default function NotFound() {
className="mt-10 flex flex-wrap items-center justify-center gap-6 text-sm"
>
<Link
href="https://app.opendsa.vercel.app"
href="https://app-opendsa.vercel.app"
className="flex items-center gap-2 text-[hsl(var(--muted-foreground))] hover:text-[hsl(var(--primary))] transition-colors"
>
<Globe className="h-4 w-4" />
Launch App
</Link>
<Link
href="https://docs.opendsa.vercel.app"
href="https://docs-opendsa.vercel.app"
className="flex items-center gap-2 text-[hsl(var(--muted-foreground))] hover:text-[hsl(var(--primary))] transition-colors"
>
<BookOpen className="h-4 w-4" />
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/sections/faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const faqItems: FAQItem[] = [
{
id: "0x03",
question: "CAN I CONTRIBUTE NEW ALGORITHMS?",
answer: "Absolutely! We welcome contributions. Check our CONTRIBUTING.md guide on GitHub or documentation website at https://docs.opendsa.vercel.app/ to get started. Each visualizer is a modular plugin, making it easy to add new ones.",
answer: "Absolutely! We welcome contributions. Check our CONTRIBUTING.md guide on GitHub or documentation website at https://docs-opendsa.vercel.app/ to get started. Each visualizer is a modular plugin, making it easy to add new ones.",
},
{
id: "0x04",
Expand Down
8 changes: 4 additions & 4 deletions apps/web/src/components/sections/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ const footerLinks = {
product: [
{ label: "Features", href: "#features" },
{ label: "Roadmap", href: "#roadmap" },
{ label: "Launch App", href: "https://app.opendsa.vercel.app" }, // TODO: change to https://app.opendsa.dev
{ label: "Launch App", href: "https://app-opendsa.vercel.app" }, // TODO: change to https://app.opendsa.dev
],
resources: [
{ label: "Documentation", href: "https://docs.opendsa.vercel.app" }, // TODO: change to https://docs.opendsa.dev
{ label: "Contributing", href: "https://docs.opendsa.vercel.app/contributing" }, // TODO: change to https://docs.opendsa.dev/contributing
{ label: "Documentation", href: "https://docs-opendsa.vercel.app" }, // TODO: change to https://docs.opendsa.dev
{ label: "Contributing", href: "https://docs-opendsa.vercel.app/contributing" }, // TODO: change to https://docs.opendsa.dev/contributing
{ label: "Changelog", href: "https://github.com/soloshun/opendsa/releases" },
],
community: [
{ label: "GitHub", href: "https://github.com/soloshun/opendsa" },
{ label: "Discord", href: "https://discord.gg/mfQvUa2y4r" },
{ label: "Twitter", href: "#" },
{ label: "Support Us ☕", href: "https://docs.opendsa.vercel.app/sponsors" }, // TODO: change to
{ label: "Support Us ☕", href: "https://docs-opendsa.vercel.app/sponsors" }, // TODO: change to
],
};

Expand Down
6 changes: 3 additions & 3 deletions apps/web/src/components/sections/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useState, useEffect } from "react";
const navLinks = [
{ href: "#features", label: "Features" },
{ href: "#roadmap", label: "Roadmap" },
{ href: "https://docs.opendsa.vercel.app", label: "Docs", external: true }, // TODO: CHANGE URL TO https://docs.opendsa.dev AFTER DOMAIN IS BOUGHT
{ href: "https://docs-opendsa.vercel.app", label: "Docs", external: true }, // TODO: CHANGE URL TO https://docs.opendsa.dev AFTER DOMAIN IS BOUGHT
];

function useGitHubStars() {
Expand Down Expand Up @@ -104,7 +104,7 @@ export function Header() {

{/* Launch App CTA */}
<Link
href="https://app.opendsa.vercel.app" // TODO: CHANGE URL TO https://app.opendsa.dev AFTER DOMAIN IS BOUGHT
href="https://app-opendsa.vercel.app" // TODO: CHANGE URL TO https://app.opendsa.dev AFTER DOMAIN IS BOUGHT
className="flex items-center gap-2 rounded-full bg-[hsl(var(--primary))] px-5 py-2 text-sm font-semibold text-[hsl(var(--primary-foreground))] transition-all hover:opacity-90 glow-sm"
>
LAUNCH APP
Expand Down Expand Up @@ -162,7 +162,7 @@ export function Header() {
)}
</Link>
<Link
href="https://app.opendsa.vercel.app" // TODO: CHANGE URL TO https://app.opendsa.dev AFTER DOMAIN IS BOUGHT
href="https://app-opendsa.vercel.app" // TODO: CHANGE URL TO https://app.opendsa.dev AFTER DOMAIN IS BOUGHT
className="flex-1 flex items-center justify-center rounded-xl bg-[hsl(var(--primary))] py-3 text-sm font-semibold text-[hsl(var(--primary-foreground))]"
>
Launch App
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/sections/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export function Hero() {
className="mt-8 sm:mt-10 flex flex-col sm:flex-row items-center justify-center gap-3 sm:gap-4 w-full max-w-md sm:max-w-none px-4 sm:px-0"
>
<Link
href="https://app.opendsa.vercel.app" // TODO: CHANGE URL TO https://app.opendsa.dev AFTER DOMAIN IS BOUGHT
href="https://app-opendsa.vercel.app" // TODO: CHANGE URL TO https://app.opendsa.dev AFTER DOMAIN IS BOUGHT
className="group w-full sm:w-auto flex items-center justify-center gap-2 sm:gap-3 rounded-full bg-[hsl(var(--primary))] px-6 sm:px-8 py-3.5 sm:py-4 text-sm sm:text-base font-semibold text-[hsl(var(--primary-foreground))] transition-all hover:opacity-90 glow"
>
Start Visualizing
Expand Down