update content
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
import React from "react";
|
||||
import Link from "next/link";
|
||||
import Image from "next/image";
|
||||
import { MaterialIcon } from "@/components/ui/MaterialIcon";
|
||||
import { ContactForm } from "@/components/contact/ContactForm";
|
||||
|
||||
@@ -688,10 +688,18 @@ body {
|
||||
max-width: 540px;
|
||||
min-width: 0;
|
||||
box-sizing: border-box;
|
||||
padding: 40px;
|
||||
padding: 48px 36px;
|
||||
border-radius: 32px;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.footer-contact-card {
|
||||
max-width: 100%;
|
||||
padding: 32px 20px;
|
||||
border-radius: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-contact-card input,
|
||||
.footer-contact-card textarea,
|
||||
.footer-contact-card button {
|
||||
|
||||
@@ -88,6 +88,7 @@ export default function RootLayout({
|
||||
>
|
||||
<head>
|
||||
{/* Material Symbols Outlined */}
|
||||
{/* eslint-disable-next-line @next/next/no-page-custom-font */}
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap"
|
||||
rel="stylesheet"
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
import { Hero } from "@/components/home/Hero";
|
||||
import { ServiceCategories } from "@/components/home/ServiceCategories";
|
||||
import { WhyNearle } from "@/components/home/WhyNearle";
|
||||
import { HowItWorks } from "@/components/home/HowItWorks";
|
||||
import { HyperlocalFeatures } from "@/components/home/HyperlocalFeatures";
|
||||
import { BusinessSection } from "@/components/home/BusinessSection";
|
||||
import { StoreQRSection } from "@/components/home/StoreQRSection";
|
||||
import { AppPromo } from "@/components/home/AppPromo";
|
||||
|
||||
export default function HomePage() {
|
||||
@@ -9,8 +12,11 @@ export default function HomePage() {
|
||||
<>
|
||||
<Hero />
|
||||
<ServiceCategories />
|
||||
<WhyNearle />
|
||||
<HowItWorks />
|
||||
<HyperlocalFeatures />
|
||||
<BusinessSection />
|
||||
<StoreQRSection />
|
||||
<AppPromo />
|
||||
</>
|
||||
);
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import React, { useState, useEffect } from "react";
|
||||
import Link from "next/link";
|
||||
import Image from "next/image";
|
||||
import { MaterialIcon } from "@/components/ui/MaterialIcon";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user