Merge version_2 into main #4
@@ -1,60 +1,35 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lato } from "next/font/google";
|
||||
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"],
|
||||
});
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "SocialSync | Real Estate Social Media Marketing", description: "Strategic social media marketing agency for real estate professionals. Increase engagement, generate leads, and grow your business with proven real estate social media strategies.", keywords: "real estate social media marketing, real estate marketing agency, real estate social media strategy, real estate lead generation, agent social media, realtor marketing", metadataBase: new URL("https://socialsync.io"),
|
||||
alternates: {
|
||||
canonical: "https://socialsync.io"
|
||||
},
|
||||
openGraph: {
|
||||
title: "SocialSync | Real Estate Social Media Marketing", description: "Strategic social media marketing for real estate professionals that converts leads into clients.", url: "https://socialsync.io", siteName: "SocialSync", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139102.jpg", alt: "SocialSync real estate social media marketing"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "SocialSync | Real Estate Social Media Marketing", description: "Strategic social media marketing for real estate professionals that converts leads into clients.", images: ["http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139102.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "SocialSync - Real Estate Social Media Marketing", description: "Elevate your real estate brand with strategic social media that converts leads into clients."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<body className={`${inter.variable}`}>
|
||||
{children}
|
||||
<script
|
||||
src="https://cdn.jsdelivr.net/npm/lenis@1.1.13/dist/lenis.min.js"
|
||||
strategy="beforeInteractive"
|
||||
/>
|
||||
<script>
|
||||
{
|
||||
"const lenis = new Lenis({\n duration: 1.2,\n easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),\n direction: 'vertical',\n gestureDirection: 'vertical',\n smooth: true,\n smoothTouch: false,\n touchMultiplier: 2,\n});\n\nfunction raf(time) {\n lenis.raf(time);\n requestAnimationFrame(raf);\n}\n\nrequestAnimationFrame(raf);"
|
||||
}
|
||||
</script>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1422,7 +1397,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -19,11 +19,11 @@ export default function LandingPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
@@ -34,7 +34,7 @@ export default function LandingPage() {
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
button={{ text: "Book a Meeting", href: "#contact" }}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -43,13 +43,13 @@ export default function LandingPage() {
|
||||
<HeroLogoBillboardSplit
|
||||
logoText="SocialSync"
|
||||
description="Elevate your real estate brand with strategic social media that converts leads into clients. Our proven approach transforms your property listings into engaging stories."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Watch Our Strategy", href: "#video" },
|
||||
{ text: "Book a Consultation", href: "#contact" }
|
||||
{ text: "Book a Meeting", href: "#contact" }
|
||||
]}
|
||||
layoutOrder="default"
|
||||
videoSrc="http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139102.jpg"
|
||||
videoSrc="https://commondatastorage.googleapis.com/gtv-videos-library/sample/BigBuckBunny.mp4"
|
||||
videoAriaLabel="SocialSync real estate social media marketing strategy video"
|
||||
frameStyle="browser"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -65,8 +65,8 @@ export default function LandingPage() {
|
||||
description="By combining deep industry knowledge with cutting-edge digital strategy, we create content that resonates with today's homebuyers."
|
||||
subdescription="Used by top real estate teams across North America"
|
||||
icon={BarChart3}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/still-life-office-desk-mess_23-2150164813.jpg"
|
||||
imageAlt="SocialSync marketing team collaborating"
|
||||
videoSrc="https://commondatastorage.googleapis.com/gtv-videos-library/sample/ElephantsDream.mp4"
|
||||
videoAriaLabel="SocialSync marketing team collaborating"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -80,16 +80,16 @@ export default function LandingPage() {
|
||||
tagIcon={Home}
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Content Strategy & Planning", description: "Customized content calendars that align with your sales cycles, seasonal trends, and target market. We plan, create, and schedule professional content that keeps your properties top-of-mind.", imageSrc: "http://img.b2bpic.net/free-psd/flat-design-interior-design-template_23-2150031546.jpg?_wi=1", imageAlt: "Social media content strategy dashboard"
|
||||
id: "1", title: "Content Strategy & Planning", description: "Customized content calendars that align with your sales cycles, seasonal trends, and target market. We plan, create, and schedule professional content that keeps your properties top-of-mind.", videoSrc: "https://commondatastorage.googleapis.com/gtv-videos-library/sample/ForBiggerBlazes.mp4"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Professional Photo & Video Production", description: "High-quality visual content that showcases properties at their best. From drone photography to virtual tours, we create assets that drive engagement and qualify leads.", imageSrc: "http://img.b2bpic.net/free-psd/home-design-instagram-posts_23-2150443550.jpg", imageAlt: "Professional real estate photography"
|
||||
id: "2", title: "Professional Photo & Video Production", description: "High-quality visual content that showcases properties at their best. From drone photography to virtual tours, we create assets that drive engagement and qualify leads.", videoSrc: "https://commondatastorage.googleapis.com/gtv-videos-library/sample/ForBiggerEscapes.mp4"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Performance Analytics & Optimization", description: "Data-driven insights into what's working. We track engagement, lead generation, and ROI to continuously refine your strategy and maximize your marketing investment.", imageSrc: "http://img.b2bpic.net/free-photo/young-man-checking-social-media-work_482257-115243.jpg", imageAlt: "Real estate marketing analytics dashboard"
|
||||
id: "3", title: "Performance Analytics & Optimization", description: "Data-driven insights into what's working. We track engagement, lead generation, and ROI to continuously refine your strategy and maximize your marketing investment.", videoSrc: "https://commondatastorage.googleapis.com/gtv-videos-library/sample/ForBiggerJoyrides.mp4"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Lead Generation & Nurturing", description: "Targeted campaigns that turn followers into qualified leads. We implement proven funnels and messaging that convert social engagement into actual transactions.", imageSrc: "http://img.b2bpic.net/free-psd/flat-design-interior-design-template_23-2150031546.jpg?_wi=2", imageAlt: "Lead generation marketing funnel"
|
||||
id: "4", title: "Lead Generation & Nurturing", description: "Targeted campaigns that turn followers into qualified leads. We implement proven funnels and messaging that convert social engagement into actual transactions.", videoSrc: "https://commondatastorage.googleapis.com/gtv-videos-library/sample/Sintel.mp4"
|
||||
}
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
@@ -106,28 +106,22 @@ export default function LandingPage() {
|
||||
tag="Success Stories"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Maria Rodriguez", role: "Luxury Real Estate Agent", company: "Prestige Properties Group", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-businessman-standing-street_23-2147932253.jpg", imageAlt: "Maria Rodriguez"
|
||||
id: "1", name: "Maria Rodriguez", role: "Luxury Real Estate Agent", company: "Prestige Properties Group", rating: 5
|
||||
},
|
||||
{
|
||||
id: "2", name: "James Mitchell", role: "Real Estate Team Lead", company: "Modern Homes Realty", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-man-with-arms-crossed_23-2148560392.jpg", imageAlt: "James Mitchell"
|
||||
id: "2", name: "James Mitchell", role: "Real Estate Team Lead", company: "Modern Homes Realty", rating: 5
|
||||
},
|
||||
{
|
||||
id: "3", name: "Sarah Chen", role: "Independent Realtor", company: "Chen Real Estate Solutions", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smile-woman-talking-phone-looking-camera_23-2148317284.jpg", imageAlt: "Sarah Chen"
|
||||
id: "3", name: "Sarah Chen", role: "Independent Realtor", company: "Chen Real Estate Solutions", rating: 5
|
||||
},
|
||||
{
|
||||
id: "4", name: "David Thompson", role: "Brokerage Owner", company: "Thompson & Associates", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-66975.jpg", imageAlt: "David Thompson"
|
||||
id: "4", name: "David Thompson", role: "Brokerage Owner", company: "Thompson & Associates", rating: 5
|
||||
},
|
||||
{
|
||||
id: "5", name: "Jessica Lee", role: "Top Producer", company: "Premier Real Estate Partners", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-woman-professional-blazer-outdoors-laptop_23-2150296623.jpg", imageAlt: "Jessica Lee"
|
||||
id: "5", name: "Jessica Lee", role: "Top Producer", company: "Premier Real Estate Partners", rating: 5
|
||||
},
|
||||
{
|
||||
id: "6", name: "Michael Santos", role: "Real Estate Executive", company: "Elite Properties LLC", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-holding-hand-pocket_23-2148095771.jpg", imageAlt: "Michael Santos"
|
||||
id: "6", name: "Michael Santos", role: "Real Estate Executive", company: "Elite Properties LLC", rating: 5
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
@@ -147,9 +141,6 @@ export default function LandingPage() {
|
||||
names={[
|
||||
"Zillow", "RE/MAX", "Century 21", "Keller Williams", "Coldwell Banker", "Instagram", "Facebook", "TikTok"
|
||||
]}
|
||||
logos={[
|
||||
"http://img.b2bpic.net/free-vector/smart-home-flat-style_23-2147842338.jpg", "http://img.b2bpic.net/free-vector/flat-design-stationery-store-logo-template_23-2149845359.jpg", "http://img.b2bpic.net/free-vector/gradient-az-za-logo-template_23-2149239680.jpg", "http://img.b2bpic.net/free-vector/modern-logo-design-real-estate-sector_1017-7295.jpg", "http://img.b2bpic.net/free-vector/logotype_23-2148154594.jpg", "http://img.b2bpic.net/free-vector/social-media-logotype-collection_23-2148081192.jpg", "http://img.b2bpic.net/free-vector/mobile-background-with-facebook-emoticons-flat-design_23-2147665558.jpg", "http://img.b2bpic.net/free-vector/modern-social-media-lower-thirds-perfect-motion-graphics_1361-3329.jpg"
|
||||
]}
|
||||
speed={40}
|
||||
showCard={true}
|
||||
/>
|
||||
@@ -191,15 +182,15 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Results", href: "#results" }
|
||||
{ label: "Results", href: "#results" },
|
||||
{ label: "About", href: "#about" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Blog", href: "/blog" }
|
||||
{ label: "FAQ", href: "#faq" }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f7f6f7;
|
||||
--card: #ffffff;
|
||||
--foreground: #25190c;
|
||||
--primary-cta: #ff6207;
|
||||
--background: #ffffff;
|
||||
--card: #f8f8f8;
|
||||
--foreground: #1a1a1a;
|
||||
--primary-cta: #000000;
|
||||
--primary-cta-text: #f7f6f7;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta: #f0f0f0;
|
||||
--secondary-cta-text: #25190c;
|
||||
--accent: #ffce93;
|
||||
--background-accent: #e8cfa8;
|
||||
--accent: #d0d0d0;
|
||||
--background-accent: #e5e5e5;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user