5 Commits

Author SHA1 Message Date
b70e036048 Update src/app/page.tsx 2026-03-06 00:40:39 +00:00
c85618216f Update src/app/layout.tsx 2026-03-06 00:40:38 +00:00
552d9799a9 Merge version_1 into main
Merge version_1 into main
2026-03-06 00:32:59 +00:00
e72bf7fb00 Merge version_1 into main
Merge version_1 into main
2026-03-06 00:32:09 +00:00
cab54457a8 Merge version_1 into main
Merge version_1 into main
2026-03-06 00:31:00 +00:00
2 changed files with 14 additions and 45 deletions

View File

@@ -1,56 +1,22 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import "./styles/variables.css";
import Tag from "@/tag/Tag"; import "./styles/base.css";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
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 = { export const metadata: Metadata = {
title: "Alipress Online Store - Quality Products at Amazing Prices", description: "Shop at Alipress Online Store for electronics, fashion, home essentials, beauty products and more. Fast delivery, affordable prices, and excellent customer support.", keywords: "online store, marketplace, shopping, electronics, fashion, home, beauty, affordable products", openGraph: { title: "Alipress Online Store", description: "Your trusted online marketplace for quality products at amazing prices"};
title: "Alipress Online Store", description: "Your trusted online marketplace for quality products at amazing prices.", siteName: "Alipress Online Store", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/online-shopping-cart-e-commers-concept_53876-127436.jpg", alt: "online store marketplace ecommerce shopping"
}
]
},
twitter: {
card: "summary_large_image", title: "Alipress Online Store", description: "Quality products at amazing prices. Shop now!", images: ["http://img.b2bpic.net/free-photo/online-shopping-cart-e-commers-concept_53876-127436.jpg"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1418,7 +1384,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -40,8 +40,8 @@ export default function LandingPage() {
title="Welcome to Alipress Online Store" title="Welcome to Alipress Online Store"
description="Your trusted online marketplace for quality products at amazing prices. From electronics and fashion to home essentials and beauty products, we bring everything you need into one convenient store. Shop smarter. Save more. Enjoy fast and easy ordering." description="Your trusted online marketplace for quality products at amazing prices. From electronics and fashion to home essentials and beauty products, we bring everything you need into one convenient store. Shop smarter. Save more. Enjoy fast and easy ordering."
tag="Everything You Need, Delivered With Ease" tag="Everything You Need, Delivered With Ease"
background={{ variant: "canvas-reveal" }} background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-photo/online-shopping-cart-e-commers-concept_53876-127436.jpg?_wi=1" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AY61vq2SVtl68udk7pxb2b8lWV/uploaded-1772757597469-995oq7b5.jpg"
imageAlt="Alipress Online Store hero banner" imageAlt="Alipress Online Store hero banner"
buttons={[ buttons={[
{ text: "Shop Now", href: "#products" }, { text: "Shop Now", href: "#products" },
@@ -49,6 +49,10 @@ export default function LandingPage() {
]} ]}
tagAnimation="slide-up" tagAnimation="slide-up"
buttonAnimation="slide-up" buttonAnimation="slide-up"
containerClassName="bg-cover bg-center"
titleClassName="text-white drop-shadow-lg"
descriptionClassName="text-white drop-shadow-md"
tagClassName="text-white"
/> />
</div> </div>