-
Notifications
You must be signed in to change notification settings - Fork 595
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
3 changed files
with
58 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,42 @@ | ||
import type { Metadata } from "next"; | ||
import Image from "next/image"; | ||
import invoiceToolbar from "../invoice-toolbar.png"; | ||
|
||
export const metadata: Metadata = { | ||
title: "Invoice Toolbar | Midday", | ||
description: "A Next.js Invoice Toolbar for invoices.", | ||
}; | ||
|
||
export default function Page() { | ||
return ( | ||
<div className="container mt-24 max-w-[540px]"> | ||
<div className="py-[200px] flex items-center justify-center"> | ||
<Image | ||
src={invoiceToolbar} | ||
alt="Invoice Toolbar" | ||
className="max-w-[240px]" | ||
/> | ||
</div> | ||
<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">Invoice Toolbar</h3> | ||
<p className="text-sm text-[#878787]"> | ||
Get started with our Invoice Toolbar | ||
</p> | ||
</div> | ||
<div className="p-6 pt-0"> | ||
<a | ||
href="https://go.midday.ai/83E5GCe" | ||
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