Merge version_2 into main #11

Merged
bender merged 2 commits from version_2 into main 2026-03-04 07:37:47 +00:00
2 changed files with 14 additions and 18 deletions

View File

@@ -22,9 +22,11 @@ const openSans = Open_Sans({
export const metadata: Metadata = {
title: "Shachar - iOS Prayer App for Jewish Morning Prayers", description: "Start your day with intention. Shachar is a beautiful iOS app designed to help Jewish users pray every morning with guided prayers, reminders, and community connection.", keywords: "prayer app, iOS, Jewish, morning prayers, spiritual growth, Shachar", metadataBase: new URL("https://shachar-prayer.com"),
alternates: {
canonical: "https://shachar-prayer.com"},
canonical: "https://shachar-prayer.com"
},
openGraph: {
title: "Shachar - Begin Your Day with Intention", description: "A beautiful iOS app for Jewish morning prayers. Download now from the App Store.", url: "https://shachar-prayer.com", siteName: "Shachar", type: "website"},
title: "Shachar - Begin Your Day with Intention", description: "A beautiful iOS app for Jewish morning prayers. Download now from the App Store.", url: "https://shachar-prayer.com", siteName: "Shachar", type: "website"
},
robots: {
index: true,
follow: true,
@@ -1415,4 +1417,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia/HeroSplitDualMedia';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
@@ -39,23 +39,17 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="torah lock"
description="Start your day with intention. A beautiful iOS app designed to help you pray every morning."
<HeroSplitDualMedia
heading="Start your day with intention"
description="A beautiful iOS app designed to help you pray every morning."
buttons={[
{ text: "Get Started", href: "https://apps.apple.com" },
{ text: "Learn More", href: "#about" }
]}
slides={[
{
imageSrc: "http://img.b2bpic.net/free-photo/hands-folded-prayer-holy-bible-church-concept-faith_169016-60197.jpg", imageAlt: "Morning prayer"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQacqHTX7mKtM5EQru9KViuK5g/uploaded-1772608413814-0lx5yrrw.png", imageAlt: "Prayer app interface"
}
]}
autoplayDelay={4000}
showDimOverlay={true}
imageSrc="http://img.b2bpic.net/free-photo/hands-folded-prayer-holy-bible-church-concept-faith_169016-60197.jpg"
imageAlt="Morning prayer"
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQacqHTX7mKtM5EQru9KViuK5g/uploaded-1772608413814-0lx5yrrw.png"
videoAriaLabel="Prayer app interface"
/>
</div>
@@ -204,4 +198,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}