diff options
| author | mihna123 <mihailonvojinovic@gmail.com> | 2026-05-24 18:28:59 +0200 |
|---|---|---|
| committer | mihna123 <mihailonvojinovic@gmail.com> | 2026-05-24 18:28:59 +0200 |
| commit | a6445297dfa7bc8d341ebcf72368d410bae20605 (patch) | |
| tree | ad1e129e517c766fb9837dd0892ea5d63ccead2d /src/app/layout.tsx | |
| parent | dde7e4f61b6be1758f80993b2486fc0ee58ac4da (diff) | |
| download | invoice-a6445297dfa7bc8d341ebcf72368d410bae20605.tar.gz invoice-a6445297dfa7bc8d341ebcf72368d410bae20605.zip | |
style: use single quotes everywhere
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42cf8c3..be69e70 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,20 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], + variable: '--font-geist-sans', + subsets: ['latin'], }); const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Free Invoices", - description: "Generate invoices for free", + title: 'Free Invoices', + description: 'Generate invoices for free', }; export default function RootLayout({ |
