diff --git a/src/app/opengraph-image.png b/src/app/opengraph-image.png new file mode 100644 index 0000000..2692ff8 Binary files /dev/null and b/src/app/opengraph-image.png differ diff --git a/src/app/page.tsx b/src/app/page.tsx index 57eb509..1a3f3f1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,28 @@ +import { Alert } from "@/components/bootstrap"; + export default function Home() { return ( -
Home Page
+
+ +

+ This is a sample project to showcase and learn the new NextJS 13 app directory and its features, including: +

+ +

+ Every page uses a different approach to fetching and caching data. Click the links in the nav bar to try them out. +

+
+ +

Note: In order to load the data on this site, you need to get a free API key from Unsplash and add it to your .env.local file as UNSPLASH_ACCESS_KEY.

+

Unsplash has a free quota of 50 requests per hour so you might start getting errors if you try too often.

+
+
) }