diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 86988fe..2c27a46 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -61,7 +61,7 @@ export default function AboutPage() { href: "/services", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/high-angle-coworkers-meeting-office_23-2148339357.jpg" + imageSrc="http://img.b2bpic.net/free-photo/high-angle-coworkers-meeting-office_23-2148339357.jpg?_wi=3" imageAlt="Sítio Phoenix team meeting" useInvertedBackground={false} ariaLabel="About Sítio Phoenix - Our story and mission" @@ -80,7 +80,7 @@ export default function AboutPage() { title: "Expertise & Excellence", description: "We combine decades of experience with continuous learning to deliver world-class financial solutions tailored to your unique circumstances.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/colleagues-working-together-project_23-2149286117.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/colleagues-working-together-project_23-2149286117.jpg?_wi=2", imageAlt: "Team expertise in action", }, items: [ @@ -104,7 +104,7 @@ export default function AboutPage() { title: "Integrity & Transparency", description: "Your trust is earned through honesty, clear communication, and putting your interests above all else. We operate with complete transparency in every engagement.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/front-view-lock-with-metal-chain_23-2148578050.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-lock-with-metal-chain_23-2148578050.jpg?_wi=2", imageAlt: "Trust and security", }, items: [ @@ -128,7 +128,7 @@ export default function AboutPage() { title: "Personalized Service", description: "No two clients are the same. We invest time understanding your specific goals, challenges, and aspirations to craft truly customized solutions.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/stylish-businesspersons-looking-laptop_23-2147626439.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/stylish-businesspersons-looking-laptop_23-2147626439.jpg?_wi=2", imageAlt: "Personalized consultation", }, items: [ diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a65a912..50ce022 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -65,7 +65,7 @@ export default function ContactPage() { href: "#information", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/setting-family-budget_1098-15665.jpg" + imageSrc="http://img.b2bpic.net/free-photo/setting-family-budget_1098-15665.jpg?_wi=2" imageAlt="Financial consultation planning" useInvertedBackground={false} ariaLabel="Contact Sítio Phoenix - Schedule a consultation" @@ -110,7 +110,7 @@ export default function ContactPage() { content: "Confidentiality is paramount. We use bank-level security protocols, encrypted communications, and secure document storage. We maintain strict confidentiality agreements and never share your information without explicit consent. Your privacy is a cornerstone of our service.", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/setting-family-budget_1098-15665.jpg" + imageSrc="http://img.b2bpic.net/free-photo/setting-family-budget_1098-15665.jpg?_wi=3" imageAlt="Financial advisor consultation" mediaAnimation="opacity" mediaPosition="right" @@ -145,7 +145,7 @@ export default function ContactPage() { href: "tel:+1234567890", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-1639.jpg" + imageSrc="http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-1639.jpg?_wi=2" imageAlt="Financial freedom and success" useInvertedBackground={false} ariaLabel="Final call to action for consultation" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..4f770e1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; +import { Montserrat } from "next/font/google"; import { Inter } 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 { Montserrat } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Sítio Phoenix - Premium International Financial Consulting", + description: "Expert international financial planning, retirement planning, and wealth management for high-net-worth individuals and families. Secure your financial future with our personalized strategies.", + keywords: "financial consulting, wealth management, international finance, retirement planning, asset protection, financial advisor", + metadataBase: new URL("https://sitiophoenix.com"), + alternates: { + canonical: "https://sitiophoenix.com", + }, + openGraph: { + title: "Sítio Phoenix - Premium Financial Consulting", + description: "Build wealth. Protect your future. Live with financial freedom through expert international financial planning.", + siteName: "Sítio Phoenix", + type: "website", + url: "https://sitiophoenix.com", + images: [ + { + url: "http://img.b2bpic.net/free-vector/luxury-golden-geometric-shapes-sale-background_23-2148834930.jpg", + alt: "Sítio Phoenix - Premium Financial Consulting", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Sítio Phoenix - Premium Financial Consulting", + description: "Expert wealth management and international financial planning for discerning clients.", + images: [ + "http://img.b2bpic.net/free-vector/luxury-golden-geometric-shapes-sale-background_23-2148834930.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +66,9 @@ export default function RootLayout({ return ( - + {children}