Merge version_1 into main #6

Merged
bender merged 4 commits from version_1 into main 2026-03-10 18:28:51 +00:00
4 changed files with 56 additions and 22 deletions

View File

@@ -70,7 +70,7 @@ export default function AboutPage() {
icon: Shield,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/low-angle-photo-tall-building_250224-299.jpg"
imageSrc="http://img.b2bpic.net/free-photo/low-angle-photo-tall-building_250224-299.jpg?_wi=2"
imageAlt="luxury estate property interior elegant"
imagePosition="right"
mediaAnimation="slide-up"
@@ -95,7 +95,7 @@ export default function AboutPage() {
name: "Margaret Sterling",
role: "Chief Investment Officer",
description: "Former managing director at Goldman Sachs with 28 years of portfolio management and strategy experience.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg?_wi=2",
imageAlt: "Margaret Sterling, CIO",
socialLinks: [
{
@@ -109,7 +109,7 @@ export default function AboutPage() {
name: "David Kensington",
role: "Wealth Strategy Director",
description: "Harvard Law graduate specializing in estate planning and tax optimization for ultra-high-net-worth clients.",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-receptionist-work_23-2149661589.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-receptionist-work_23-2149661589.jpg?_wi=2",
imageAlt: "David Kensington, Director",
socialLinks: [
{
@@ -123,7 +123,7 @@ export default function AboutPage() {
name: "Victoria Chen",
role: "Relationship Manager",
description: "Dedicated partner focused on understanding your family's values and translating them into actionable wealth strategy.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-manager-talking-coworker-office-sitting-with-laptop_1258-194648.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-manager-talking-coworker-office-sitting-with-laptop_1258-194648.jpg?_wi=2",
imageAlt: "Victoria Chen, Relationship Manager",
socialLinks: [
{
@@ -153,7 +153,7 @@ export default function AboutPage() {
title: "Portfolio Construction",
subtitle: "Diversified strategies across global markets",
description: "We construct carefully balanced portfolios tailored to your risk tolerance and time horizon. Our investment philosophy combines active management with strategic diversification to achieve optimal risk-adjusted returns while protecting your capital.",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-business-chart-wood-background_1150-6649.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-business-chart-wood-background_1150-6649.jpg?_wi=2",
imageAlt: "investment portfolio diversification concept",
},
{
@@ -162,7 +162,7 @@ export default function AboutPage() {
title: "Tax Optimization",
subtitle: "Strategic planning to minimize tax burden",
description: "Our specialized tax advisors implement sophisticated strategies to minimize tax liabilities while maintaining compliance. From income tax optimization to estate tax planning, we help preserve more of your wealth for your family.",
imageSrc: "http://img.b2bpic.net/free-photo/business-colleagues-partners-meeting-co-working-reading-agreement-using-laptop_74855-8819.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-colleagues-partners-meeting-co-working-reading-agreement-using-laptop_74855-8819.jpg?_wi=2",
imageAlt: "tax planning strategy financial",
},
{
@@ -171,7 +171,7 @@ export default function AboutPage() {
title: "Legacy Architecture",
subtitle: "Generational wealth transfer strategies",
description: "We design comprehensive estate plans that protect your assets, minimize taxes, and ensure your wealth transfers smoothly to the next generation according to your wishes.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-financial-advisor-using-laptop-while-having-meeting-with-young-couple_637285-5798.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-financial-advisor-using-laptop-while-having-meeting-with-young-couple_637285-5798.jpg?_wi=2",
imageAlt: "estate planning documents legal",
},
]}

View File

@@ -1,24 +1,56 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } 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 { Public_Sans } 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 publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Ascent Wealth Management | Luxury Estate Planning for High-Net-Worth Individuals",
description: "Expert wealth management and estate planning for high-net-worth families. Comprehensive financial strategies, tax optimization, and legacy preservation. $8.7B+ AUM.",
keywords: "wealth management, estate planning, high-net-worth advisory, portfolio management, tax planning, luxury wealth, financial planning",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Ascent Wealth Management | Premium Wealth Advisory",
description: "Expert wealth management strategies for high-net-worth individuals and families. Tailored advisory, portfolio management, and legacy planning.",
siteName: "Ascent Wealth",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/young-woman-using-phone_23-2148230176.jpg",
alt: "Luxury wealth management office",
},
],
},
twitter: {
card: "summary_large_image",
title: "Ascent Wealth Management | Premium Financial Advisory",
description: "Expert wealth management for high-net-worth families. Comprehensive planning, investment management, tax optimization.",
images: ["http://img.b2bpic.net/free-photo/young-woman-using-phone_23-2148230176.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +59,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -123,7 +123,7 @@ export default function HomePage() {
icon: Shield,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/low-angle-photo-tall-building_250224-299.jpg"
imageSrc="http://img.b2bpic.net/free-photo/low-angle-photo-tall-building_250224-299.jpg?_wi=1"
imageAlt="Luxury wealth management office"
imagePosition="right"
mediaAnimation="slide-up"
@@ -183,7 +183,7 @@ export default function HomePage() {
name: "Margaret Sterling",
role: "Chief Investment Officer",
description: "Former managing director at Goldman Sachs with 28 years of portfolio management and strategy experience.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg?_wi=1",
imageAlt: "Margaret Sterling, CIO",
socialLinks: [
{
@@ -197,7 +197,7 @@ export default function HomePage() {
name: "David Kensington",
role: "Wealth Strategy Director",
description: "Harvard Law graduate specializing in estate planning and tax optimization for ultra-high-net-worth clients.",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-receptionist-work_23-2149661589.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-receptionist-work_23-2149661589.jpg?_wi=1",
imageAlt: "David Kensington, Director",
socialLinks: [
{
@@ -211,7 +211,7 @@ export default function HomePage() {
name: "Victoria Chen",
role: "Relationship Manager",
description: "Dedicated partner focused on understanding your family's values and translating them into actionable wealth strategy.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-manager-talking-coworker-office-sitting-with-laptop_1258-194648.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-manager-talking-coworker-office-sitting-with-laptop_1258-194648.jpg?_wi=1",
imageAlt: "Victoria Chen, Relationship Manager",
socialLinks: [
{

View File

@@ -58,7 +58,7 @@ export default function ServicesPage() {
title: "Portfolio Construction",
subtitle: "Diversified strategies across global markets",
description: "We construct carefully balanced portfolios tailored to your risk tolerance and time horizon. Our investment philosophy combines active management with strategic diversification to achieve optimal risk-adjusted returns while protecting your capital.",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-business-chart-wood-background_1150-6649.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-business-chart-wood-background_1150-6649.jpg?_wi=1",
imageAlt: "Portfolio management interface",
buttons: [
{
@@ -73,7 +73,7 @@ export default function ServicesPage() {
title: "Tax Optimization",
subtitle: "Strategic planning to minimize tax burden",
description: "Our specialized tax advisors implement sophisticated strategies to minimize tax liabilities while maintaining compliance. From income tax optimization to estate tax planning, we help preserve more of your wealth for your family.",
imageSrc: "http://img.b2bpic.net/free-photo/business-colleagues-partners-meeting-co-working-reading-agreement-using-laptop_74855-8819.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-colleagues-partners-meeting-co-working-reading-agreement-using-laptop_74855-8819.jpg?_wi=1",
imageAlt: "Tax strategy planning",
},
{
@@ -82,7 +82,7 @@ export default function ServicesPage() {
title: "Legacy Architecture",
subtitle: "Generational wealth transfer strategies",
description: "We design comprehensive estate plans that protect your assets, minimize taxes, and ensure your wealth transfers smoothly to the next generation according to your wishes.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-financial-advisor-using-laptop-while-having-meeting-with-young-couple_637285-5798.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-financial-advisor-using-laptop-while-having-meeting-with-young-couple_637285-5798.jpg?_wi=1",
imageAlt: "Estate planning documents",
},
]}