Skip to content
Snippets Groups Projects
page.tsx 3.9 KiB
Newer Older
Yusuf Akgül's avatar
Yusuf Akgül committed
import { GlobalLayout } from "@/components/global-layout"
import { Card, CardContent, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"

export default function HelpPage() {
Yusuf Akgül's avatar
Yusuf Akgül committed
        <GlobalLayout
            mainContent={
Yusuf Akgül's avatar
Yusuf Akgül committed
                <Card className="w-full overflow-hidden p-0 md:p-6">
Yusuf Akgül's avatar
Yusuf Akgül committed
                    <CardHeader>
                        <CardTitle>
                            Help / FAQ
                        </CardTitle>
                    </CardHeader>
                    <CardContent className="grid gap-1">
                        <p className="font-bold">1. How do I create an account?</p>
                        <p>
                            To create an account, click on the &quot;Sign Up&quot; button on the homepage.
                            Fill in the required information and follow the prompts to complete the registration process.
                        </p>

Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p className="font-bold pt-6">2. How can I create a new post?</p>
Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p>
                            To create a new post, you have multiple options depending on where you are on the website.
Yusuf Akgül's avatar
Yusuf Akgül committed
                            If you&apos;re on the homepage, or your profile page, you&apos;ll find a text field where you can write your post.
Yusuf Akgül's avatar
Yusuf Akgül committed
                            Once you&apos;re done, simply click the &quot;Post&quot; button to publish your content and share it with others.
                        </p>

Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p className="font-bold pt-6">3. How can I delete my post?</p>
Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p>
Yusuf Akgül's avatar
Yusuf Akgül committed
                            To  delete your post, go to the Home page or your profile page and locate your post.
                            Depending on the platform, there may be options to delete the post.
Yusuf Akgül's avatar
Yusuf Akgül committed
                            Click on the respective option and follow the prompts to make the desired changes.
                        </p>

Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p className="font-bold pt-6">4. How do I follow a user?</p>
Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p>
Yusuf Akgül's avatar
Yusuf Akgül committed
                            To follow a user, visit their profile page and look for the &quot;Follow&quot; button.
Yusuf Akgül's avatar
Yusuf Akgül committed
                            Click on it, and you&apos;ll start receiving updates and notifications from them.
                        </p>

Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p className="font-bold pt-6">5. How do I customize my profile?</p>
Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p>
                            To customize your profile, go to the settings of your account.
                            There, you can upload a profile picture, add a bio, update your personal information, and adjust privacy settings according to your preferences.
                        </p>

Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p className="font-bold pt-6">6. Can I change my username?</p>
Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p>
                            In most cases, you can change your username by going to the account settings.
                            Look for the option to edit your name and follow the provided instructions to make the change.
                        </p>

Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p className="font-bold pt-6">7. How do I delete my account?</p>
Yusuf Akgül's avatar
Yusuf Akgül committed
                        <p>
                            If you wish to delete your account, go to the account settings “Account Settings” section and look for the option to delete your account.
                            Follow the provided steps and confirm your decision to permanently delete your account. Please note that this action is irreversible and will result in the loss of all associated data.
                        </p>
                    </CardContent>
                    <CardFooter className="flex flex-wrap items-center justify-between pt-6">
                        Remember, if you have any further questions or need additional assistance, feel free to reach out to our support team.
                    </CardFooter>
                </Card>
            }
        />