8 Commits

Author SHA1 Message Date
0aabce14c3 Update src/app/page.tsx 2026-03-07 15:05:38 +00:00
07beee70b3 Update src/app/layout.tsx 2026-03-07 15:05:38 +00:00
fee74e48e1 Merge version_2 into main
Merge version_2 into main
2026-03-07 15:02:01 +00:00
c3e9c5bd59 Update src/app/page.tsx 2026-03-07 15:01:57 +00:00
25135479ed Update src/app/layout.tsx 2026-03-07 15:01:57 +00:00
a84a06c408 Merge version_1 into main
Merge version_1 into main
2026-03-07 15:00:28 +00:00
faad538b36 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:58:35 +00:00
67b0e1b619 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:57:23 +00:00
2 changed files with 15 additions and 52 deletions

View File

@@ -1,58 +1,19 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } 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"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
import "@/styles/globals.css";
export const metadata: Metadata = {
title: "SNEKI | Premium Brazilian Fruit Snacks for Retailers", description: "Premium natural fruit snacks from Brazil. 100% fruit-based, zero preservatives. Perfect for retail partners and resellers looking for high-quality, healthy snacking solutions.", keywords: "fruit snacks, dehydrated fruits, freeze-dried chips, natural snacks, healthy food, retail products, B2B, wholesale", metadataBase: new URL("https://sneki.com"),
alternates: {
canonical: "https://sneki.com"},
robots: {
index: true,
follow: true,
},
openGraph: {
type: "website", siteName: "SNEKI", title: "SNEKI | Premium Natural Fruit Snacks", description: "Transform your snack offerings with SNEKI premium natural fruit snacks. High retail margins, strong consumer demand.", url: "https://sneki.com", images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-fruits-as-peach-pear-coconut-banana-cutting-board-with-knife-plaid-cloth-green-background_141793-27999.jpg", alt: "SNEKI premium fruit snacks collection"},
],
},
twitter: {
card: "summary_large_image", title: "SNEKI | Premium Natural Fruit Snacks", description: "High-quality Brazilian fruit snacks for retail partners. 100% natural ingredients.", images: [
"http://img.b2bpic.net/free-photo/top-view-fruits-as-peach-pear-coconut-banana-cutting-board-with-knife-plaid-cloth-green-background_141793-27999.jpg"],
},
};
title: "SNEKI - Premium Fruit Snacks for Wholesale", description: "Premium natural fruit snacks with strong retail margins and high shelf rotation. B2B wholesale opportunity for resellers."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1381,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,6 +1,6 @@
"use client";
import { Check, Leaf, TrendingUp, Zap } from "lucide-react";
import { Check, Leaf, TrendingUp, Zap, DollarSign } from "lucide-react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
@@ -43,7 +43,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitTestimonial
title="SNEKI"
description="Smart snacking for everyday life"
description="Premium fruit snacks. Strong margins. High shelf rotation."
tag="Natural Fruit Snacks"
tagAnimation="slide-up"
imagePosition="right"
@@ -88,6 +88,9 @@ export default function LandingPage() {
{
title: "High Retail Sell-Through", description: "Proven consumer demand and repeat purchases ensure strong shelf performance.", icon: TrendingUp,
},
{
title: "Strong Margins", description: "Excellent profit opportunity for retailers. Competitive wholesale pricing with premium positioning enables healthy markup and strong bottom-line growth.", icon: DollarSign,
},
]}
imagePosition="right"
imageSrc="http://img.b2bpic.net/free-photo/front-view-stand-with-nuts-different-along-with-dried-fruits-dark-floor_140725-14502.jpg?_wi=1"
@@ -236,4 +239,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}