Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-21 19:53:16 +00:00
5 changed files with 60 additions and 23 deletions

View File

@@ -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: [

View File

@@ -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"

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -82,15 +82,15 @@ export default function HomePage() {
imageAlt: "Wealth management dashboard",
},
{
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=1",
imageAlt: "Global financial markets international trading",
},
{
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=1",
imageAlt: "Secure financial future protection",
},
{
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=1",
imageAlt: "Professional advisory meeting consultation",
},
{
@@ -98,7 +98,7 @@ export default function HomePage() {
imageAlt: "Investment portfolio management growth",
},
{
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=1",
imageAlt: "International financial strategy planning",
},
]}
@@ -373,7 +373,7 @@ export default function HomePage() {
content: "Absolutely. We maintain the strictest confidentiality standards and use secure, encrypted systems to protect all client information. Your privacy is paramount in all our operations.",
},
]}
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=1"
imageAlt="financial advisor consultation office"
mediaAnimation="opacity"
mediaPosition="right"
@@ -407,7 +407,7 @@ export default function HomePage() {
},
]}
buttonAnimation="slide-up"
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=1"
imageAlt="financial freedom success lifestyle"
useInvertedBackground={true}
ariaLabel="Call to action section for scheduling consultation"

View File

@@ -160,7 +160,7 @@ export default function ServicesPage() {
},
]}
buttonAnimation="slide-up"
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=2"
imageAlt="professional advisory team meeting"
useInvertedBackground={false}
ariaLabel="Call to action for services consultation"