import Footer from "@/Layout/Global/Footer";
import Home from "../Layout/Home";
import { Metadata } from "next";
import Header from "@/Layout/Global/Header";

export const metadata: Metadata = {
  title: "We Buy Any Car - Free Car Valuation - Sell My Car",
  description:
    "Do you want to sell your car? Sell your car with Car Baba! We offer safe, easy and fast car selling service. Enter your car registration number for free and instant online valuation."
};

export default function Index() {
  return (
    <>
      <Header />
      <Home />
      <Footer />
    </>
  );
}
