From c3c203b5550adecc43792ff10c59b8cf0fb0d425 Mon Sep 17 00:00:00 2001 From: arraysid Date: Tue, 27 May 2025 09:11:31 +0700 Subject: [PATCH] fix: replace text logo with LogoSimple component in Footer and restore Footer in Layout --- .../src/app/(public)/_components/footer.tsx | 27 +++---------------- apps/landing/src/app/(public)/layout.tsx | 3 ++- 2 files changed, 5 insertions(+), 25 deletions(-) diff --git a/apps/landing/src/app/(public)/_components/footer.tsx b/apps/landing/src/app/(public)/_components/footer.tsx index 6f5b4ba..e49b3ac 100644 --- a/apps/landing/src/app/(public)/_components/footer.tsx +++ b/apps/landing/src/app/(public)/_components/footer.tsx @@ -1,3 +1,4 @@ +import { LogoSimple } from '@/app/_components/logo'; import Link from 'next/link'; export default function Footer() { @@ -7,9 +8,7 @@ export default function Footer() {
- - IMPHNEN - +

Ingin Menjadi Programmer Handal merupakan komunitas Programmer @@ -87,7 +86,7 @@ export default function Footer() {

  • Komunitas @@ -176,26 +175,6 @@ export default function Footer() { HTML
  • - -
    -

    Newsletter

    -

    - Dapatkan update terbaru dari kami -

    -
    - - -
    -
    diff --git a/apps/landing/src/app/(public)/layout.tsx b/apps/landing/src/app/(public)/layout.tsx index 608523c..b09f5e5 100644 --- a/apps/landing/src/app/(public)/layout.tsx +++ b/apps/landing/src/app/(public)/layout.tsx @@ -1,3 +1,4 @@ +import Footer from './_components/footer'; import { Header } from './_components/header'; export default function Layout({ children }: { children: React.ReactNode }) { @@ -5,7 +6,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {
    {children}
    - {/*
    ); }