-
Notifications
You must be signed in to change notification settings - Fork 509
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
Showing
2 changed files
with
36 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import type { Metadata } from "next"; | ||
|
||
export const metadata: Metadata = { | ||
title: "React PDF Invoice Template | Midday", | ||
description: "A React PDF invoice template with Tiptap JSON support.", | ||
}; | ||
|
||
export default function Page() { | ||
return ( | ||
<div className="container mt-24 max-w-[540px]"> | ||
<div className="mt-8"> | ||
<div className="border bg-card text-card-foreground shadow-sm"> | ||
<div className="flex flex-col space-y-1.5 p-6"> | ||
<h3 className="text-xl font-medium">Use Midday Invoice Template</h3> | ||
<p className="text-sm text-[#878787]"> | ||
Get started with our powerful React PDF invoice template | ||
</p> | ||
</div> | ||
<div className="p-6 pt-0"> | ||
<a | ||
href="https://go.midday.ai/editor-code" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="inline-flex items-center justify-center text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 bg-primary text-primary-foreground hover:bg-primary/90 h-10 px-4 py-2" | ||
> | ||
View implementation | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
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