Add copyright notice
All checks were successful
Add copyright notice / copyright_notice (pull_request) Successful in 3m40s
Check usage of free licenses / build-static-assets (pull_request) Successful in 2m17s
Playwright Tests / test (pull_request) Successful in 6m11s
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 18m2s

This commit is contained in:
Manuel Bustillo 2024-10-27 21:27:41 +00:00
parent ca17dd1adb
commit 18a0fdc514
5 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,5 @@
/* Copyright (C) 2024 Manuel Bustillo*/
// This file contains type definitions for your data. // This file contains type definitions for your data.
// It describes the shape of the data, and what data type each property should accept. // It describes the shape of the data, and what data type each property should accept.
// For simplicity of teaching, we're manually defining these types. // For simplicity of teaching, we're manually defining these types.

View File

@ -1,3 +1,5 @@
/* Copyright (C) 2024 Manuel Bustillo*/
// This file contains placeholder data that you'll be replacing with real data in the Data Fetching chapter: // This file contains placeholder data that you'll be replacing with real data in the Data Fetching chapter:
// https://nextjs.org/learn/dashboard-app/fetching-data // https://nextjs.org/learn/dashboard-app/fetching-data
const users = [ const users = [

View File

@ -1,3 +1,5 @@
/* Copyright (C) 2024 Manuel Bustillo*/
import { Revenue } from './definitions'; import { Revenue } from './definitions';
export const formatCurrency = (amount: number) => { export const formatCurrency = (amount: number) => {

View File

@ -1,3 +1,5 @@
/* Copyright (C) 2024 Manuel Bustillo*/
// import bcrypt from 'bcrypt'; // import bcrypt from 'bcrypt';
// import { db } from '@vercel/postgres'; // import { db } from '@vercel/postgres';
// import { guests, customers, revenue, users } from '../lib/placeholder-data'; // import { guests, customers, revenue, users } from '../lib/placeholder-data';

View File

@ -1,3 +1,5 @@
/* Copyright (C) 2024 Manuel Bustillo*/
import { Inter, Lusitana, Gloria_Hallelujah} from 'next/font/google'; import { Inter, Lusitana, Gloria_Hallelujah} from 'next/font/google';
export const inter = Inter({ subsets: ['latin'] }); export const inter = Inter({ subsets: ['latin'] });