Merge version_2 into main #2
@@ -1,58 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } 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 poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "ARViewer - Create AR Experiences Without Coding", description: "Create stunning augmented reality experiences in seconds. No coding required. Upload 3D content, generate with AI, share via QR code. Free forever plan available.", keywords: "augmented reality, AR platform, WebAR, 3D content, AI generation, QR code, no-code AR", metadataBase: new URL("https://arviewer.io"),
|
||||
alternates: {
|
||||
canonical: "https://arviewer.io"},
|
||||
openGraph: {
|
||||
title: "ARViewer - Create AR Without Coding", description: "Build immersive AR experiences in seconds. Perfect for creators, ecommerce, and marketing.", url: "https://arviewer.io", siteName: "ARViewer", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbVHZT7GsXaDjfKAwg9DSAOgP7/a-stunning-3d-augmented-reality-scene-sh-1772861398815-dc58ddce.png", alt: "ARViewer platform interface"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "ARViewer - Create AR Experiences", description: "No coding. No complexity. Just AR.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbVHZT7GsXaDjfKAwg9DSAOgP7/a-stunning-3d-augmented-reality-scene-sh-1772861398815-dc58ddce.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "ARViewer - Create AR Experiences in Seconds", description: "Upload, generate, or design 3D content and instantly turn it into stunning augmented reality experiences. No coding required."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -120,19 +120,19 @@ export default function LandingPage() {
|
||||
plans={[
|
||||
{
|
||||
id: "free", badge: "Getting Started", badgeIcon: Star,
|
||||
price: "Free", subtitle: "Perfect for testing and learning", features: [
|
||||
price: "Free", subtitle: "Best for prototyping", features: [
|
||||
"5 AR experiences", "Basic AR types", "QR sharing", "Unlimited scans", "Community support"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pro", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$12.99/mo", subtitle: "For creators and small teams", features: [
|
||||
price: "$12.99/mo", subtitle: "Most popular choice", features: [
|
||||
"100 AR experiences", "AI 3D generation", "Analytics & insights", "Faster loading", "Watermark removal", "Commercial use", "Email support"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "business", badge: "For Enterprises", badgeIcon: Crown,
|
||||
price: "$39.99/mo", subtitle: "Full platform with advanced features", features: [
|
||||
price: "$39.99/mo", subtitle: "For large-scale operations", features: [
|
||||
"1000+ AR experiences", "Unlimited AI generation", "White-label options", "Priority support", "Advanced analytics", "API access", "Custom domain", "Team collaboration"
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user