diff --git a/examples/simple-example/components/Footer.tsx b/examples/simple-example/components/Footer.tsx
new file mode 100644
index 00000000..20b5ba09
--- /dev/null
+++ b/examples/simple-example/components/Footer.tsx
@@ -0,0 +1,16 @@
+export default function Footer() {
+ return (
+
+ );
+}
diff --git a/examples/simple-example/components/NavBar.tsx b/examples/simple-example/components/NavBar.tsx
new file mode 100644
index 00000000..ddb5ecca
--- /dev/null
+++ b/examples/simple-example/components/NavBar.tsx
@@ -0,0 +1,31 @@
+export default function NavBar() {
+ return (
+
-
-
- My Datasets
-
-
- Here is a list of all my datasets for easy access and sharing
-
-
+ <>
+
+
+
+
+
+ Datasets
+
+
+ Here is a list of all my datasets for easy access and sharing all
+ stored on multiple github accounts and repos and joined together
+ here
+
+
+
+
-
-
-
- |
- Name
- |
-
- Repo
- |
-
- Description
- |
-
- Last updated
- |
- |
-
-
-
- {projects.map((project) => (
-
- |
- {project.repo_config.name
- ? project.repo_config.name
- : project.full_name + (project.base_path === '/' ? '' : '/' + project.base_path)}
- |
-
- {project.full_name}
- |
-
- {project.repo_config.description
- ? project.repo_config.description
- : project.description}
- |
-
- {formatter.format(new Date(project.last_updated))}
- |
-
-
- More info
-
- |
+
+
-
+
+ >
);
}
-
-export default Datasets;
diff --git a/examples/simple-example/pages/styles.css b/examples/simple-example/pages/styles.css
index f2e5d174..94937429 100644
--- a/examples/simple-example/pages/styles.css
+++ b/examples/simple-example/pages/styles.css
@@ -1,6 +1,11 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
+
+.prose {
+ --tw-prose-headings: #4F46E5 !important;
+}
+
html {
-webkit-text-size-adjust: 100%;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
@@ -62,9 +67,6 @@ pre {
box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
-.rounded {
- border-radius: 1.5rem;
-}
.wrapper {
width: 100%;
}
diff --git a/examples/simple-example/public/logo.png b/examples/simple-example/public/logo.png
new file mode 100644
index 00000000..ef6faa3a
Binary files /dev/null and b/examples/simple-example/public/logo.png differ