mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-10 23:55:05 +01:00
Fix footer and fix overlay backgroudn thing
Co-authored-by: Jip Frijlink <JipFr@users.noreply.github.com>
This commit is contained in:
parent
7251b39cc3
commit
41b6c84fbf
@ -3,6 +3,7 @@ import { useTranslation } from "react-i18next";
|
|||||||
import { Icon, Icons } from "@/components/Icon";
|
import { Icon, Icons } from "@/components/Icon";
|
||||||
import { BrandPill } from "@/components/layout/BrandPill";
|
import { BrandPill } from "@/components/layout/BrandPill";
|
||||||
import { WideContainer } from "@/components/layout/WideContainer";
|
import { WideContainer } from "@/components/layout/WideContainer";
|
||||||
|
import { conf } from "@/setup/config";
|
||||||
|
|
||||||
function FooterLink(props: {
|
function FooterLink(props: {
|
||||||
href: string;
|
href: string;
|
||||||
@ -50,10 +51,10 @@ export function Footer() {
|
|||||||
<p className="mt-3">{t("footer.legal.disclaimerText")}</p>
|
<p className="mt-3">{t("footer.legal.disclaimerText")}</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="space-x-[2rem]">
|
<div className="space-x-[2rem]">
|
||||||
<FooterLink icon={Icons.GITHUB} href="https://github.com/movie-web">
|
<FooterLink icon={Icons.GITHUB} href={conf().GITHUB_LINK}>
|
||||||
{t("footer.links.github")}
|
{t("footer.links.github")}
|
||||||
</FooterLink>
|
</FooterLink>
|
||||||
<FooterLink icon={Icons.DISCORD} href="https://discord.movie-web.app">
|
<FooterLink icon={Icons.DISCORD} href={conf().DISCORD_LINK}>
|
||||||
{t("footer.links.discord")}
|
{t("footer.links.discord")}
|
||||||
</FooterLink>
|
</FooterLink>
|
||||||
<div className="inline md:hidden">
|
<div className="inline md:hidden">
|
||||||
|
@ -24,7 +24,7 @@ export function Navigation(props: NavigationProps) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
className="fixed left-0 right-0 top-0 min-h-[150px] bg-gradient-to-b from-background-main via-background-main to-transparent sm:from-transparent"
|
className="fixed left-0 right-0 top-0 z-10 min-h-[150px] bg-gradient-to-b from-background-main via-background-main to-transparent sm:from-transparent"
|
||||||
style={{
|
style={{
|
||||||
top: `${bannerHeight}px`,
|
top: `${bannerHeight}px`,
|
||||||
}}
|
}}
|
||||||
|
Loading…
Reference in New Issue
Block a user