-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2d756b
commit d9f8115
Showing
14 changed files
with
163 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { MarketingLayout } from "@/components/marketing-layout"; | ||
|
||
export default function HomePage() { | ||
return ( | ||
<MarketingLayout> | ||
<h1>Marketing Page</h1> | ||
</MarketingLayout> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...src/app/(app)/_components/site-footer.tsx → ...rc/components/layout/marketing-footer.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { Icons } from "@/components/icons"; | ||
import { buttonVariants } from "@/components/ui/button"; | ||
import { siteUrls } from "@/config/urls"; | ||
import Link from "next/link"; | ||
|
||
export function MarketingHeader() { | ||
return ( | ||
<header className="sticky top-0 flex h-16 w-full items-center justify-center border-b border-border bg-background"> | ||
<div className="container flex items-center justify-between gap-6"> | ||
<Link href={siteUrls.marketing.base}> | ||
<Icons.logo /> | ||
</Link> | ||
|
||
<div className="flex items-center gap-2"> | ||
<Link | ||
className={buttonVariants({ size: "sm" })} | ||
href={siteUrls.docs.base} | ||
> | ||
Get Started | ||
</Link> | ||
|
||
<Link | ||
className={buttonVariants({ | ||
size: "sm", | ||
variant: "outline", | ||
})} | ||
href={siteUrls.marketing.pricing} | ||
> | ||
Pricing | ||
</Link> | ||
</div> | ||
</div> | ||
</header> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.