+
diff --git a/app/sitemap.ts b/app/sitemap.ts
new file mode 100644
index 0000000..696ec86
--- /dev/null
+++ b/app/sitemap.ts
@@ -0,0 +1,18 @@
+import { MetadataRoute } from "next"
+
+export default function sitemap(): MetadataRoute.Sitemap {
+ return [
+ {
+ url: "https://aws-rstart-labs.vercel.app",
+ lastModified: new Date(),
+ changeFrequency: "monthly",
+ priority: 1,
+ },
+ {
+ url: "https://aws-rstart-labs.vercel.app/home",
+ lastModified: new Date(),
+ changeFrequency: "monthly",
+ priority: 0.8,
+ },
+ ]
+}
diff --git a/components/UI/Divider.tsx b/components/UI/Divider.tsx
index 7f72ef1..53eeb32 100644
--- a/components/UI/Divider.tsx
+++ b/components/UI/Divider.tsx
@@ -1,5 +1,5 @@
const Divider = () => {
- return
+ return
}
export default Divider
diff --git a/components/UI/Lab.tsx b/components/UI/Lab.tsx
index b5d1aa7..7d55531 100644
--- a/components/UI/Lab.tsx
+++ b/components/UI/Lab.tsx
@@ -98,7 +98,7 @@ const Lab = ({ email, lab, data, mutate }: LabProps) => {
handleTrackLab({ event: e, lab })}
checked={completed}
diff --git a/components/UI/Loading/LoadingLabs.tsx b/components/UI/Loading/LoadingLabs.tsx
index 6283df4..2514937 100644
--- a/components/UI/Loading/LoadingLabs.tsx
+++ b/components/UI/Loading/LoadingLabs.tsx
@@ -7,8 +7,8 @@ const LoadingLabs = () => {
{loadingItems.map((_, idx) => (
+ className="h-10 w-full rounded bg-gray-500 dark:bg-gray-700"
+ />
))}
diff --git a/components/UI/Loading/LoadingLogo.tsx b/components/UI/Loading/LoadingLogo.tsx
index deed627..79b4db5 100644
--- a/components/UI/Loading/LoadingLogo.tsx
+++ b/components/UI/Loading/LoadingLogo.tsx
@@ -1,12 +1,25 @@
import { appTitle } from "@/lib/const"
import Image from "next/image"
-const LoadingLogo = () =>{
- return (
-
-
-
- )
+const LoadingLogo = () => {
+ return (
+
+
+
+
+ )
}
-export default LoadingLogo
\ No newline at end of file
+export default LoadingLogo
diff --git a/lib/metadata-options.ts b/lib/metadata-options.ts
index 923302c..1347cb0 100644
--- a/lib/metadata-options.ts
+++ b/lib/metadata-options.ts
@@ -39,13 +39,13 @@ export const metaDataOptions: Metadata = {
},
},
robots: {
- index: false,
+ index: true,
follow: true,
nocache: true,
googleBot: {
index: true,
- follow: false,
- noimageindex: true,
+ follow: true,
+ noimageindex: false,
"max-video-preview": -1,
"max-image-preview": "large",
"max-snippet": -1,
diff --git a/public/aws-restart-logo-light.png b/public/aws-restart-logo-light.png
new file mode 100644
index 0000000..c3acb16
Binary files /dev/null and b/public/aws-restart-logo-light.png differ