diff --git a/app/[locale]/community/support/page.tsx b/app/[locale]/community/support/page.tsx new file mode 100644 index 00000000000..cca6229b98b --- /dev/null +++ b/app/[locale]/community/support/page.tsx @@ -0,0 +1,414 @@ +import { BookOpen, HelpCircle, Shield, ShieldAlert } from "lucide-react" +import { setRequestLocale } from "next-intl/server" + +import type { PageParams } from "@/lib/types" + +import Breadcrumbs from "@/components/Breadcrumbs" +import FeedbackCard from "@/components/FeedbackCard" +import { SimpleHero } from "@/components/Hero" +import MainArticle from "@/components/MainArticle" +import { + Alert, + AlertContent, + AlertDescription, + AlertIcon, + AlertTitle, +} from "@/components/ui/alert" +import { ButtonLink } from "@/components/ui/buttons/Button" +import Link from "@/components/ui/Link" +import { Section } from "@/components/ui/section" +import WindowBox from "@/components/WindowBox" + +import { getMetadata } from "@/lib/utils/metadata" + +const EVENT_CATEGORY = "Support" + +export default async function Page({ params }: { params: PageParams }) { + const { locale } = params + + setRequestLocale(locale) + + return ( +
+ Whether you need help with a transaction, want to stay safe, or + are just getting started, this page connects you to the right + resources. +
++ Ethereum is a decentralized network, not a company. ethereum.org + is an educational website. It is not a wallet, exchange, or + financial platform. We do not hold any funds and cannot access any + accounts. No one from ethereum.org will ever contact you first. + Anyone claiming otherwise is a scammer. +
++ If you lost funds, got scammed, or something unexpected + happened, start here. +
+ + I lost funds to a scam or fraud + + + Secure remaining funds and revoke permissions + + + Report a scam address or website + + + Trace where funds were sent + + + I sent to the wrong address + + + I lost access to my wallet + + + My transaction is stuck + ++ Learn to recognize common scam tactics before they target you. +
+ + Common scam tactics and how to spot them + + + Why "recovery experts" are always scams + + + How to identify scam tokens + + + Full security and scam prevention guide + + + Revoke unnecessary token approvals + ++ Step-by-step guides for wallets, tokens, bridges, and more. +
+ + How to create an Ethereum account + + + How to use a wallet + + + How to swap tokens + + + How to bridge tokens to layer 2 + + + How to revoke token access + ++ Clearing up the most frequent misunderstandings about + Ethereum. +
+ + Is Ethereum a company? + + + Can someone recover or freeze my funds? + + + Can I still mine Ethereum? + + + Is there an Ethereum support team? + ++ If you did not find what you were looking for, ask the community. + Volunteers in these channels may be able to point you in the right + direction. +
+