Merge version_2 into main #4
@@ -1,52 +1,27 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito", subsets: ["latin"],
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Alpha Finance Melbourne - Premium Wealth Management", description: "Advanced financial solutions and wealth management services in Melbourne. Secure portfolio optimization, expert advisors, and 24/7 support.", keywords: "finance, wealth management, investment, portfolio, Melbourne, financial planning, asset management", metadataBase: new URL("https://alphafinancemelbourne.com.au"),
|
||||
alternates: {
|
||||
canonical: "https://alphafinancemelbourne.com.au"},
|
||||
openGraph: {
|
||||
title: "Alpha Finance Melbourne", description: "Premium wealth management and financial advisory services in Melbourne.", url: "https://alphafinancemelbourne.com.au", siteName: "Alpha Finance Melbourne", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Alpha Finance Melbourne", description: "Premier financial solutions for wealth management in Melbourne."},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Alpha Finance - Advanced Financial Solutions for Melbourne", description: "Experience next-generation wealth management with cinematic interactions and intelligent portfolio optimization."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${poppins.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1414,7 +1389,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -6,10 +6,9 @@ import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTe
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
|
||||
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
|
||||
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Briefcase, CheckCircle, Phone, Sparkles, TrendingUp, Users } from "lucide-react";
|
||||
import { Briefcase, CheckCircle, Phone, Sparkles, TrendingUp } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -33,7 +32,6 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
]}
|
||||
button={{ text: "Get Started", href: "contact" }}
|
||||
/>
|
||||
@@ -46,22 +44,11 @@ export default function LandingPage() {
|
||||
tag="Premium Finance"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/determined-ceo-works-office-analyzing-infographics-setting-business-goals_482257-116818.jpg"
|
||||
imageAlt="Alpha Finance Dashboard"
|
||||
videoSrc="https://videos.pexels.com/video-files/3585047/3585047-sd_640_360_25fps.mp4"
|
||||
videoAriaLabel="Financial Dashboard Animation"
|
||||
mediaAnimation="slide-up"
|
||||
background={{ variant: "glowing-orb" }}
|
||||
testimonials={[
|
||||
{
|
||||
name: "Michael Chen", handle: "CEO, Investment Corp", testimonial: "Alpha Finance transformed our portfolio management strategy with seamless automation.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=1", imageAlt: "Michael Chen"},
|
||||
{
|
||||
name: "Sarah Williams", handle: "Wealth Manager, Premier Assets", testimonial: "The platform's intuitive design and robust security make it our top choice.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=1", imageAlt: "Sarah Williams"},
|
||||
{
|
||||
name: "David Kim", handle: "Director, Capital Partners", testimonial: "Outstanding performance metrics and exceptional client support throughout.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-with-arms-crossed_1098-58.jpg?_wi=1", imageAlt: "David Kim"},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
testimonials={[]}
|
||||
buttons={[
|
||||
{ text: "Start Your Journey", href: "contact" },
|
||||
{ text: "Learn More", href: "about" },
|
||||
@@ -75,7 +62,8 @@ export default function LandingPage() {
|
||||
heading={[
|
||||
{ type: "text", content: "Trusted Financial Excellence in" },
|
||||
{
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/focused-business-colleagues-arguing_1262-20538.jpg", alt: "Alpha Finance Team"},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/focused-business-colleagues-arguing_1262-20538.jpg", alt: "Alpha Finance Team"
|
||||
},
|
||||
{ type: "text", content: "Melbourne Since 2010" },
|
||||
]}
|
||||
buttons={[{ text: "Explore Services", href: "services" }]}
|
||||
@@ -93,13 +81,17 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "01", title: "Advanced Security", description: "Bank-grade encryption and multi-layer protection for your assets", imageSrc: "http://img.b2bpic.net/free-photo/skilled-it-expert-compromising-cyber-security-through-malware-viruses_482257-126439.jpg", imageAlt: "Security Features"},
|
||||
id: "01", title: "Advanced Security", description: "Bank-grade encryption and multi-layer protection for your assets", imageSrc: "http://img.b2bpic.net/free-photo/skilled-it-expert-compromising-cyber-security-through-malware-viruses_482257-126439.jpg", imageAlt: "Security Features"
|
||||
},
|
||||
{
|
||||
id: "02", title: "Portfolio Growth", description: "AI-powered investment strategies optimized for maximum returns", imageSrc: "http://img.b2bpic.net/free-vector/money-landing-page_23-2148156286.jpg?_wi=1", imageAlt: "Growth Analytics"},
|
||||
id: "02", title: "Portfolio Growth", description: "AI-powered investment strategies optimized for maximum returns", imageSrc: "http://img.b2bpic.net/free-vector/money-landing-page_23-2148156286.jpg?_wi=1", imageAlt: "Growth Analytics"
|
||||
},
|
||||
{
|
||||
id: "03", title: "Expert Support", description: "24/7 dedicated financial advisors for personalized guidance", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-957.jpg?_wi=1", imageAlt: "Support Team"},
|
||||
id: "03", title: "Expert Support", description: "24/7 dedicated financial advisors for personalized guidance", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-957.jpg?_wi=1", imageAlt: "Support Team"
|
||||
},
|
||||
{
|
||||
id: "04", title: "Real-Time Analytics", description: "Live market data and instant performance tracking dashboard", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg?_wi=1", imageAlt: "Analytics Dashboard"},
|
||||
id: "04", title: "Real-Time Analytics", description: "Live market data and instant performance tracking dashboard", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg?_wi=1", imageAlt: "Analytics Dashboard"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
@@ -141,11 +133,14 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "01", title: "Wealth Management", description: "Personalized investment strategies aligned with your financial goals", imageSrc: "http://img.b2bpic.net/free-vector/money-landing-page_23-2148156286.jpg?_wi=2", imageAlt: "Wealth Management"},
|
||||
id: "01", title: "Wealth Management", description: "Personalized investment strategies aligned with your financial goals", imageSrc: "http://img.b2bpic.net/free-vector/money-landing-page_23-2148156286.jpg?_wi=2", imageAlt: "Wealth Management"
|
||||
},
|
||||
{
|
||||
id: "02", title: "Portfolio Optimization", description: "Strategic asset allocation for balanced risk and returns", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg?_wi=2", imageAlt: "Portfolio Services"},
|
||||
id: "02", title: "Portfolio Optimization", description: "Strategic asset allocation for balanced risk and returns", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg?_wi=2", imageAlt: "Portfolio Services"
|
||||
},
|
||||
{
|
||||
id: "03", title: "Financial Planning", description: "Comprehensive retirement and estate planning solutions", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-957.jpg?_wi=2", imageAlt: "Financial Planning"},
|
||||
id: "03", title: "Financial Planning", description: "Comprehensive retirement and estate planning solutions", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-957.jpg?_wi=2", imageAlt: "Financial Planning"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
@@ -156,50 +151,33 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
title="Client Success Stories"
|
||||
description="Real testimonials from satisfied clients across Melbourne and beyond"
|
||||
tag="Testimonials"
|
||||
tagIcon={Users}
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Transformed Our Wealth Strategy", quote: "Alpha Finance's data-driven approach helped us grow our portfolio by 35% within just two years. The platform is intuitive and the team is incredibly responsive.", name: "Jennifer Rodriguez", role: "Portfolio Manager, Pinnacle Investments", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=2", imageAlt: "Jennifer Rodriguez"},
|
||||
{
|
||||
id: "2", title: "Security and Performance Combined", quote: "The security measures are outstanding, and the real-time analytics give us complete confidence in our investment decisions. Best financial platform we've used.", name: "Robert Martinez", role: "Senior Executive, Corporate Finance", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=2", imageAlt: "Robert Martinez"},
|
||||
{
|
||||
id: "3", title: "Exceptional Customer Support", quote: "Every team member goes above and beyond to help. The personalized advice and 24/7 support have made managing our wealth effortless.", name: "Emma Thompson", role: "CEO, Heritage Capital", imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-with-arms-crossed_1098-58.jpg?_wi=2", imageAlt: "Emma Thompson"},
|
||||
{
|
||||
id: "4", title: "Industry-Leading Platform", quote: "We've benchmarked against competitors, and Alpha Finance is consistently ahead. The innovation and reliability are unmatched in the market.", name: "David Kowalski", role: "Investment Director, Global Fund", imageSrc: "http://img.b2bpic.net/free-photo/successful-expert_1098-14503.jpg", imageAlt: "David Kowalski"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Start Today", href: "contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
ctaTitle="Connect With Our Team"
|
||||
ctaDescription="Discuss your financial goals with our expert advisors and discover personalized solutions."
|
||||
ctaButton={{
|
||||
text: "Schedule Consultation", href: "https://calendly.com"}}
|
||||
text: "Schedule Consultation", href: "https://calendly.com"
|
||||
}}
|
||||
ctaIcon={Phone}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What investment minimum is required?", content: "We welcome investors of all levels, starting with a minimum of AUD $25,000. Our flexible pricing accommodates various portfolio sizes."},
|
||||
id: "1", title: "What investment minimum is required?", content: "We welcome investors of all levels, starting with a minimum of AUD $25,000. Our flexible pricing accommodates various portfolio sizes."
|
||||
},
|
||||
{
|
||||
id: "2", title: "How secure is my data?", content: "We use bank-grade encryption, multi-factor authentication, and comply with all Australian financial regulations to protect your sensitive information."},
|
||||
id: "2", title: "How secure is my data?", content: "We use bank-grade encryption, multi-factor authentication, and comply with all Australian financial regulations to protect your sensitive information."
|
||||
},
|
||||
{
|
||||
id: "3", title: "What are your service fees?", content: "Our transparent fee structure starts at 0.5% annual management fee, with no hidden costs. We also offer performance-based fee options."},
|
||||
id: "3", title: "What are your service fees?", content: "Our transparent fee structure starts at 0.5% annual management fee, with no hidden costs. We also offer performance-based fee options."
|
||||
},
|
||||
{
|
||||
id: "4", title: "Can I withdraw funds anytime?", content: "Yes, you can withdraw funds at any time with no penalties. Most withdrawals are processed within 2-3 business days."},
|
||||
id: "4", title: "Can I withdraw funds anytime?", content: "Yes, you can withdraw funds at any time with no penalties. Most withdrawals are processed within 2-3 business days."
|
||||
},
|
||||
{
|
||||
id: "5", title: "How often will I receive updates?", content: "Receive real-time dashboard access, monthly performance reports, and quarterly strategy reviews with your dedicated advisor."},
|
||||
id: "5", title: "How often will I receive updates?", content: "Receive real-time dashboard access, monthly performance reports, and quarterly strategy reviews with your dedicated advisor."
|
||||
},
|
||||
{
|
||||
id: "6", title: "What is your office location?", content: "We are located at 70-90A Garden Dr, Tullamarine VIC 3043, Australia. Phone: +61 3 8347 6300"},
|
||||
id: "6", title: "What is your office location?", content: "We are located at 70-90A Garden Dr, Tullamarine VIC 3043, Australia. Phone: +61 3 8347 6300"
|
||||
},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
@@ -240,4 +218,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user