@@ -1,5 +1,6 @@
|
||||
import PartsBrowseClient from "@/components/parts/PartsBrowseClient";
|
||||
|
||||
export default function Page({ params }: { params: { platform: string; partRole: string } }) {
|
||||
export default async function Page(props: { params: Promise<{ platform: string; partRole: string }> }) {
|
||||
const params = await props.params;
|
||||
return <PartsBrowseClient partRole={params.partRole} platform={params.platform} />;
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
import React from "react";
|
||||
import Link from "next/link";
|
||||
import MailingAddressComponent from "@/components/MailingAddressComponent";
|
||||
|
||||
export const metadata = {
|
||||
title: "Privacy Policy | Battl Builder",
|
||||
@@ -7,6 +8,8 @@ export const metadata = {
|
||||
"Privacy Policy for Battl Builder. Learn how we collect, use, and protect your data.",
|
||||
};
|
||||
|
||||
|
||||
|
||||
export default function PrivacyPolicy() {
|
||||
const lastUpdated = "January 9, 2026";
|
||||
|
||||
@@ -22,7 +25,8 @@ export default function PrivacyPolicy() {
|
||||
<section>
|
||||
<h2 className="mb-4 text-xl font-semibold">1. Introduction</h2>
|
||||
<p>
|
||||
Battl Builder ("we," "us," "our," or "Company") respects your privacy
|
||||
Battl Builder ("we," "us," "our," or "Company") respects
|
||||
your privacy
|
||||
and is committed to protecting it through this Privacy Policy. This
|
||||
policy explains our practices regarding the collection, use, and
|
||||
protection of your personal information when you access our website
|
||||
@@ -412,15 +416,7 @@ export default function PrivacyPolicy() {
|
||||
<strong>Email:</strong>{" "}
|
||||
<span className="text-amber-300">privacy@battlbuilder.com</span>
|
||||
</p>
|
||||
<p>
|
||||
<strong>Mailing Address:</strong>
|
||||
<br />
|
||||
Battl Builder, LLC.
|
||||
<br />
|
||||
[Your Address]
|
||||
<br />
|
||||
[City, State, ZIP]
|
||||
</p>
|
||||
<MailingAddressComponent/>
|
||||
</div>
|
||||
<p className="mt-4 text-sm">
|
||||
We will respond to all privacy inquiries within 30 days of receipt.
|
||||
|
||||
Reference in New Issue
Block a user