Skip to content

Commit

Permalink
feat: add missing links in header
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolivierbouch committed Nov 29, 2024
1 parent 04883d2 commit 2b98679
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion websites/customdomainready/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const metadata: Metadata = {
openGraph: {
title: 'Custom Domain Ready',
description: 'Ship custom domain support for your SaaS in less than a day for free',
url: 'https://yourdomain.com',
url: 'https://customdomainready.com',
siteName: 'Custom Domain Ready',
//images: [
// {
Expand Down
4 changes: 3 additions & 1 deletion websites/customdomainready/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export default function Home() {
<div className="container mx-auto px-4 py-6 flex justify-between items-center">
<h2 className="text-2xl font-bold text-gray-800 dark:text-gray-100">Custom Domain Ready</h2>
<div className="flex items-center space-x-4">
<Button variant="outline">Get Started</Button>
<Link target='_blank' href="https://github.com/marcolivierbouch/custom-domain-ready" passHref>
<Button variant="outline">Get Started</Button>
</Link>
<button
onClick={() => setTheme(theme === 'dark' ? 'light' : 'dark')}
className="p-2 rounded-full bg-gray-200 dark:bg-gray-700 transition-colors duration-200"
Expand Down

0 comments on commit 2b98679

Please sign in to comment.