diff --git a/README.md b/README.md
index 77711fad..6d299ab3 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,14 @@
+# Filecoin Dev Summit 2023
+Website Url: https://fildev.io/,
+Links Page: https://fil.page/
+
+
+
+
+# Updating Copy
+To update copy, please go to the `/content` folder and find `filecoin-dev-summit.tsx` which contains the content for the general page copy. To edit the Schedule, please open a github issue requesting a change you would like to make.
+
+
# NEXT-SASS
Why would I use this?
@@ -18,7 +29,7 @@ npm install
npm run dev
```
-Go to `http://localhost:3005` in your browser of choice. Enjoy!
+Go to `http://localhost:10000` in your browser of choice. Enjoy!
### Scripts
diff --git a/app/filecoin-dev-summit/head.tsx b/app/filecoin-dev-summit/head.tsx
deleted file mode 100644
index 99f2ef0c..00000000
--- a/app/filecoin-dev-summit/head.tsx
+++ /dev/null
@@ -1,31 +0,0 @@
-import DefaultMetaTags from '@components/DefaultMetaTags';
-import PlausibleScript from '@root/components/PlausibleScript';
-
-export default async function Head({ params }) {
- const title = 'Filecoin Dev Summit';
- const description = 'Filecoin Dev Summit 2023';
- const url = 'https://filecoindevsummit.io';
-
- // SUMMARY_LARGE_IMAGE: 1500x785
- return (
- <>
-
{description}
} + {description && }{title}
{description}
} + {description && } {cta && ({description}
}+ {subtitle} +
+ )}Loading
+{mediaItem.smallDesc}
} -{mediaItem.title}
} + +{mediaItem.title}
} + +{mediaItem.subtitle}
} - {desc &&{mediaItem.desc}
} + {smallDesc &&{mediaItem.smallDesc}
}{mediaItem.desc}
} +{item.title}
)} {item?.dropdown && ({item.title}
@@ -48,7 +48,7 @@ export default function NavbarLogoMiddle({ navContent }) { return ({item.title}
)} @@ -82,15 +82,15 @@ function Dropdown({ dropdown }) { {dropdownItem?.header &&{dropdownItem.title}
- +{dropdownItem?.date}
diff --git a/components/PlausibleScript.tsx b/components/PlausibleScript.tsx index 0084f635..a224c849 100644 --- a/components/PlausibleScript.tsx +++ b/components/PlausibleScript.tsx @@ -1,5 +1,5 @@ import Script from 'next/script'; export default function PlausibleScript() { - return ; + return ; } diff --git a/components/ResponsiveNavbar.module.scss b/components/ResponsiveNavbar.module.scss index c8641609..2821eb2d 100644 --- a/components/ResponsiveNavbar.module.scss +++ b/components/ResponsiveNavbar.module.scss @@ -1,20 +1,25 @@ .navbar { position: sticky; top: 0; - z-index: var(--z-index-medium); + z-index: var(--z-index-large); } .container { - height: 80px; + height: 60px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; .list { + font-weight: var(--font-weight-light); display: flex; gap: 16px; list-style: none; + + @media (max-width: 768px) { + display: none; //to do: add mobile menu + } } .listItem { @@ -23,5 +28,9 @@ } .logo { - height: 32px; + height: 2rem; + + @media (max-width: 380px) { + height: 1.2rem; + } } diff --git a/components/ResponsiveNavbar.tsx b/components/ResponsiveNavbar.tsx index e21e5ab1..dbbd14e5 100644 --- a/components/ResponsiveNavbar.tsx +++ b/components/ResponsiveNavbar.tsx @@ -13,15 +13,17 @@ export default function ResponsiveNavbar({ navContent }) {