Added Hover support to Home page
This commit is contained in:
parent
884d28a317
commit
08ac36c7fc
2 changed files with 15 additions and 15 deletions
|
@ -49,11 +49,11 @@ const CardStyle = css`
|
||||||
height: 240px;
|
height: 240px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const CardLink = styled(Link)`
|
export const CardLink = styled(Link)`
|
||||||
${CardStyle}
|
${CardStyle}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const CardStyleWrap = styled.div`
|
export const CardStyleWrap = styled.div`
|
||||||
${CardStyle}
|
${CardStyle}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import Head from 'next/head'
|
import Head from 'next/head'
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
import { PageTitle, PageDescription, PageContentBox, PageCard } from '../components/styles/content';
|
import { PageTitle, PageDescription, PageContentBox, PageCard, CardLink } from '../components/styles/content';
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
|
@ -18,26 +18,26 @@ export default function Home() {
|
||||||
Feel free to look around
|
Feel free to look around
|
||||||
</PageDescription>
|
</PageDescription>
|
||||||
<PageContentBox>
|
<PageContentBox>
|
||||||
<PageCard key="about">
|
<CardLink key="about" href="/about">
|
||||||
<Link href="/about">
|
<PageCard>
|
||||||
<h2>About →</h2>
|
<h2>About →</h2>
|
||||||
<p>Useless Info, don't bother</p>
|
<p>Useless Info, don't bother</p>
|
||||||
</Link>
|
</PageCard>
|
||||||
</PageCard>
|
</CardLink>
|
||||||
|
|
||||||
<PageCard key="servers">
|
<CardLink key="servers" href="/games">
|
||||||
<Link href="/games">
|
<PageCard>
|
||||||
<h2>Games →</h2>
|
<h2>Games →</h2>
|
||||||
<p>List of all available Servers</p>
|
<p>List of all available Servers</p>
|
||||||
</Link>
|
</PageCard>
|
||||||
</PageCard>
|
</CardLink>
|
||||||
|
|
||||||
<PageCard key="services">
|
<CardLink key="services" href="/services">
|
||||||
<Link href="/services">
|
<PageCard>
|
||||||
<h2>Services →</h2>
|
<h2>Services →</h2>
|
||||||
<p>List of available Services</p>
|
<p>List of available Services</p>
|
||||||
</Link>
|
</PageCard>
|
||||||
</PageCard>
|
</CardLink>
|
||||||
</PageContentBox>
|
</PageContentBox>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue