diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 92a0fc8..5cb18c0 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -54,7 +54,7 @@ export default function ContactPage() { description: "Browse 50+ professionally designed templates across portfolio, business, restaurant, and agency categories. Filter by style, industry, and features to find your perfect match.", imageSrc: - "http://img.b2bpic.net/free-psd/flat-design-landing-page-gardening-template_23-2149357558.jpg", + "http://img.b2bpic.net/free-psd/flat-design-landing-page-gardening-template_23-2149357558.jpg?_wi=2", }, { id: 2, @@ -62,7 +62,7 @@ export default function ContactPage() { description: "Pick from Template Only, Template + Setup, or Customized Template options. Choose your editing subscription tier based on your customization needs.", imageSrc: - "http://img.b2bpic.net/free-vector/flat-business-infographic-with-photo_23-2148228064.jpg", + "http://img.b2bpic.net/free-vector/flat-business-infographic-with-photo_23-2148228064.jpg?_wi=2", }, { id: 3, @@ -70,7 +70,7 @@ export default function ContactPage() { description: "Get instant access to your template with our editing tools. Use our subscription service for ongoing customizations or manage edits yourself through our intuitive interface.", imageSrc: - "http://img.b2bpic.net/free-vector/content-management-system-home-page_23-2148811885.jpg", + "http://img.b2bpic.net/free-vector/content-management-system-home-page_23-2148811885.jpg?_wi=2", }, ]} /> @@ -92,7 +92,7 @@ export default function ContactPage() { company: "Creative Collective", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/front-view-professional-business-woman-suit_23-2148603020.jpg", + "http://img.b2bpic.net/free-photo/front-view-professional-business-woman-suit_23-2148603020.jpg?_wi=2", }, { id: "2", @@ -101,7 +101,7 @@ export default function ContactPage() { company: "TechFlow Designs", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/smiling-man-suit-looking-camera_23-2148112202.jpg", + "http://img.b2bpic.net/free-photo/smiling-man-suit-looking-camera_23-2148112202.jpg?_wi=2", }, { id: "3", @@ -110,7 +110,7 @@ export default function ContactPage() { company: "Modern Bistro Group", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/happy-young-businesswoman-holding-diary-looking-camera-workplace_23-2148187204.jpg", + "http://img.b2bpic.net/free-photo/happy-young-businesswoman-holding-diary-looking-camera-workplace_23-2148187204.jpg?_wi=2", }, { id: "4", @@ -119,7 +119,7 @@ export default function ContactPage() { company: "StartUp Ventures", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5353.jpg", + "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5353.jpg?_wi=2", }, ]} kpiItems={[ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..ca23e3a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Poppins } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,35 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "ANLY - Professional Website Templates for Designers & Agencies", + description: "Browse 50+ professional website templates designed for freelancers, agencies, and small businesses. Choose template + service level, customize, and launch in minutes.", + keywords: "website templates, portfolio templates, business website, agency templates, professional templates, customizable templates, website builder", + metadataBase: new URL("https://www.anly.io"), + alternates: { + canonical: "https://www.anly.io", + }, + openGraph: { + title: "ANLY - Professional Website Templates", + description: "Launch your professional website in minutes with ANLY templates", + url: "https://www.anly.io", + siteName: "ANLY", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/business-landing-page-with-photo_23-2148248047.jpg", + alt: "ANLY Template Showcase", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ANLY - Professional Website Templates", + description: "Launch your professional website in minutes", + images: ["http://img.b2bpic.net/free-vector/business-landing-page-with-photo_23-2148293486.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +61,9 @@ export default function RootLayout({ return ( - + {children}