design refinements
This commit is contained in:
parent
5780d0a31b
commit
ca85e2923e
6 changed files with 21 additions and 10 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
import Image from '@/components/Image'
|
||||||
import headerNavLinks from '@/data/headerNavLinks'
|
import headerNavLinks from '@/data/headerNavLinks'
|
||||||
import Link from './Link'
|
import Link from './Link'
|
||||||
import SectionContainer from './SectionContainer'
|
import SectionContainer from './SectionContainer'
|
||||||
|
@ -12,15 +13,23 @@ interface Props {
|
||||||
const LayoutWrapper = ({ children }: Props) => {
|
const LayoutWrapper = ({ children }: Props) => {
|
||||||
return (
|
return (
|
||||||
<SectionContainer>
|
<SectionContainer>
|
||||||
|
<Link href="/">
|
||||||
|
<Image
|
||||||
|
src="/static/images/header-banner.jpg"
|
||||||
|
alt="header banner"
|
||||||
|
width="1500px"
|
||||||
|
height="600px"
|
||||||
|
/>
|
||||||
|
</Link>
|
||||||
<div className="flex h-screen flex-col justify-between">
|
<div className="flex h-screen flex-col justify-between">
|
||||||
<header className="flex items-center justify-between py-6">
|
<header className="flex items-center justify-between">
|
||||||
<div className="flex items-center text-base sm:w-full">
|
<div className="flex items-center text-base sm:w-full">
|
||||||
<div className="hidden sm:flex sm:w-full sm:justify-around">
|
<div className="sm:border-y-1 sm:border-l-1 hidden border sm:flex sm:w-full sm:justify-between sm:border-r-0 sm:border-primary-900 sm:text-center">
|
||||||
{headerNavLinks.map((link) => (
|
{headerNavLinks.map((link) => (
|
||||||
<Link
|
<Link
|
||||||
key={link.title}
|
key={link.title}
|
||||||
href={link.href}
|
href={link.href}
|
||||||
className="p-1 font-bold text-gray-900 hover:text-primary-400 dark:text-gray-100 dark:hover:text-primary-500 sm:p-4"
|
className="focus:shadow-outline-blue sm:border-r-1 inline border border-transparent bg-primary-600 px-4 py-3 text-sm font-medium leading-5 text-white shadow transition-colors duration-150 hover:bg-primary-700 focus:outline-none dark:hover:bg-primary-500 sm:grow sm:border-y-0 sm:border-l-0 sm:border-primary-900 sm:text-center"
|
||||||
>
|
>
|
||||||
{link.title}
|
{link.title}
|
||||||
</Link>
|
</Link>
|
||||||
|
|
|
@ -21,7 +21,7 @@ const MobileNav = () => {
|
||||||
<div className="sm:hidden">
|
<div className="sm:hidden">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="ml-1 mr-1 h-8 w-8 rounded py-1"
|
className="mt-2 ml-1 mr-1 h-8 w-8 rounded py-1"
|
||||||
aria-label="Toggle Menu"
|
aria-label="Toggle Menu"
|
||||||
onClick={onToggleNav}
|
onClick={onToggleNav}
|
||||||
>
|
>
|
||||||
|
@ -47,7 +47,7 @@ const MobileNav = () => {
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
<div
|
<div
|
||||||
className={`fixed top-24 right-0 z-10 h-full w-full transform bg-gray-200 opacity-95 duration-300 ease-in-out dark:bg-gray-800 ${
|
className={`fixed right-0 z-10 h-full w-full transform bg-gray-200 opacity-95 duration-300 ease-in-out dark:bg-gray-800 ${
|
||||||
navShow ? 'translate-x-0' : 'translate-x-full'
|
navShow ? 'translate-x-0' : 'translate-x-full'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
"@/data/*": ["data/*"],
|
"@/data/*": ["data/*"],
|
||||||
"@/layouts/*": ["layouts/*"],
|
"@/layouts/*": ["layouts/*"],
|
||||||
"@/lib/*": ["lib/*"],
|
"@/lib/*": ["lib/*"],
|
||||||
"@/css/*": ["css/*"]
|
"@/css/*": ["css/*"],
|
||||||
|
"@/static/*": ["public/static/*"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ export default function FourZeroFour() {
|
||||||
</p>
|
</p>
|
||||||
<p className="mb-8">But dont worry, you can find plenty of other things on our homepage.</p>
|
<p className="mb-8">But dont worry, you can find plenty of other things on our homepage.</p>
|
||||||
<Link href="/">
|
<Link href="/">
|
||||||
<button className="focus:shadow-outline-blue inline rounded-lg border border-transparent bg-blue-600 px-4 py-2 text-sm font-medium leading-5 text-white shadow transition-colors duration-150 hover:bg-blue-700 focus:outline-none dark:hover:bg-blue-500">
|
<button className="focus:shadow-outline-blue inline rounded-lg border border-transparent bg-primary-600 px-4 py-2 text-sm font-medium leading-5 text-white shadow transition-colors duration-150 hover:bg-primary-700 focus:outline-none dark:hover:bg-primary-500">
|
||||||
Back to homepage
|
Back to homepage
|
||||||
</button>
|
</button>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
|
@ -32,10 +32,10 @@ module.exports = {
|
||||||
sans: ['InterVariable', ...defaultTheme.fontFamily.sans],
|
sans: ['InterVariable', ...defaultTheme.fontFamily.sans],
|
||||||
},
|
},
|
||||||
colors: {
|
colors: {
|
||||||
primary: colors.blueGray,
|
primary: colors.blue,
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
gray: colors.neutral, // TODO: Remove ts-ignore after tw types gets updated to v3
|
gray: colors.neutral, // TODO: Remove ts-ignore after tw types gets updated to v3
|
||||||
blueGray: {
|
blue: {
|
||||||
DEFAULT: '#7AB5C4',
|
DEFAULT: '#7AB5C4',
|
||||||
50: '#F9FCFC',
|
50: '#F9FCFC',
|
||||||
100: '#EBF4F6',
|
100: '#EBF4F6',
|
||||||
|
|
|
@ -20,7 +20,8 @@
|
||||||
"@/data/*": ["data/*"],
|
"@/data/*": ["data/*"],
|
||||||
"@/layouts/*": ["layouts/*"],
|
"@/layouts/*": ["layouts/*"],
|
||||||
"@/lib/*": ["lib/*"],
|
"@/lib/*": ["lib/*"],
|
||||||
"@/css/*": ["css/*"]
|
"@/css/*": ["css/*"],
|
||||||
|
"@/static/*": ["public/static/*"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
||||||
|
|
Loading…
Reference in a new issue