From ca85e2923ee843666a5eb31fa007d053603f352f Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 6 Jun 2022 10:58:13 -0700 Subject: [PATCH] design refinements --- components/LayoutWrapper.tsx | 15 ++++++++++++--- components/MobileNav.tsx | 4 ++-- jsconfig.json | 3 ++- pages/404.tsx | 2 +- tailwind.config.js | 4 ++-- tsconfig.json | 3 ++- 6 files changed, 21 insertions(+), 10 deletions(-) diff --git a/components/LayoutWrapper.tsx b/components/LayoutWrapper.tsx index 20675c7..93f1873 100644 --- a/components/LayoutWrapper.tsx +++ b/components/LayoutWrapper.tsx @@ -1,3 +1,4 @@ +import Image from '@/components/Image' import headerNavLinks from '@/data/headerNavLinks' import Link from './Link' import SectionContainer from './SectionContainer' @@ -12,15 +13,23 @@ interface Props { const LayoutWrapper = ({ children }: Props) => { return ( + + header banner +
-
+
-
+
{headerNavLinks.map((link) => ( {link.title} diff --git a/components/MobileNav.tsx b/components/MobileNav.tsx index 69f9894..19a9680 100644 --- a/components/MobileNav.tsx +++ b/components/MobileNav.tsx @@ -21,7 +21,7 @@ const MobileNav = () => {
diff --git a/jsconfig.json b/jsconfig.json index a01d7de..657a114 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -6,7 +6,8 @@ "@/data/*": ["data/*"], "@/layouts/*": ["layouts/*"], "@/lib/*": ["lib/*"], - "@/css/*": ["css/*"] + "@/css/*": ["css/*"], + "@/static/*": ["public/static/*"] } } } diff --git a/pages/404.tsx b/pages/404.tsx index 492db79..05acffc 100644 --- a/pages/404.tsx +++ b/pages/404.tsx @@ -14,7 +14,7 @@ export default function FourZeroFour() {

But dont worry, you can find plenty of other things on our homepage.

- diff --git a/tailwind.config.js b/tailwind.config.js index a2d28e3..f879560 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -32,10 +32,10 @@ module.exports = { sans: ['InterVariable', ...defaultTheme.fontFamily.sans], }, colors: { - primary: colors.blueGray, + primary: colors.blue, //@ts-ignore gray: colors.neutral, // TODO: Remove ts-ignore after tw types gets updated to v3 - blueGray: { + blue: { DEFAULT: '#7AB5C4', 50: '#F9FCFC', 100: '#EBF4F6', diff --git a/tsconfig.json b/tsconfig.json index b67fe87..d602a67 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,7 +20,8 @@ "@/data/*": ["data/*"], "@/layouts/*": ["layouts/*"], "@/lib/*": ["lib/*"], - "@/css/*": ["css/*"] + "@/css/*": ["css/*"], + "@/static/*": ["public/static/*"] } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],