Commit 4190568c by Arjun Jhukal

updated the minor changes

parent 68457509
"use client"; "use client";
import { useGetSeoDataQuery } from "@/services/menuApi";
import Image from "next/image"; import Image from "next/image";
export default function ComingSoon() { export default function ComingSoon() {
const { data } = useGetSeoDataQuery();
return ( return (
<div className="min-h-screen flex flex-col items-center justify-center px-6 text-center" <div className="min-h-screen flex flex-col items-center justify-center px-6 text-center"
style={{ style={{
...@@ -11,7 +14,7 @@ export default function ComingSoon() { ...@@ -11,7 +14,7 @@ export default function ComingSoon() {
> >
<div className="max-w-lg w-full flex flex-col items-center gap-6"> <div className="max-w-lg w-full flex flex-col items-center gap-6">
<Image <Image
src="/assets/images/logo.png" src={data?.data?.logo}
alt="Logo" alt="Logo"
width={120} width={120}
height={120} height={120}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment