-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
426 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ import { Box, chakra, Container, Stack, Text } from "@chakra-ui/react"; | |
import { FaGithub, FaTwitter } from "react-icons/fa"; | ||
import { ReactNode } from "react"; | ||
import { MdAlternateEmail } from "react-icons/md"; | ||
import Link from "next/link"; | ||
|
||
const SocialButton = ({ | ||
children, | ||
|
@@ -41,14 +42,17 @@ export default function Footer() { | |
maxWidth="container.lg" | ||
py={4} | ||
direction={{ base: "column", md: "row" }} | ||
spacing={4} | ||
spacing={6} | ||
justify={{ base: "center", md: "space-between" }} | ||
align={{ base: "center", md: "center" }} | ||
> | ||
<Text></Text> | ||
<Stack alignItems="center" direction="row" spacing={6}> | ||
<Text fontSize="lg" fontWeight="bold"> | ||
Photoshot. | ||
<Stack alignItems="center" direction="row" spacing={4}> | ||
<Text fontSize="sm"> | ||
<Link href="/terms">Terms and Privacy</Link> | ||
</Text> | ||
<Text fontSize="sm"> | ||
<Link href="/faq">FAQ</Link> | ||
</Text> | ||
<SocialButton href="https://github.com/shinework/photoshot"> | ||
<FaGithub /> | ||
|
@@ -59,6 +63,9 @@ export default function Footer() { | |
<SocialButton href="mailto:[email protected]"> | ||
<MdAlternateEmail /> | ||
</SocialButton> | ||
<Text fontSize="lg" fontWeight="bold"> | ||
Photoshot. | ||
</Text> | ||
</Stack> | ||
</Container> | ||
</Box> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import PageContainer from "@/components/layout/PageContainer"; | ||
import { Link, List, ListItem, Text, VStack } from "@chakra-ui/react"; | ||
import React from "react"; | ||
|
||
const Terms = () => { | ||
return ( | ||
<PageContainer> | ||
<VStack | ||
marginX="auto" | ||
maxWidth="container.lg" | ||
p={10} | ||
spacing={4} | ||
backgroundColor="white" | ||
borderRadius="lg" | ||
width="100%" | ||
alignItems="flex-start" | ||
> | ||
<Text fontWeight="bold" fontSize="3xl"> | ||
Frequently Asked Questions | ||
</Text> | ||
|
||
<Text fontWeight="bold" fontSize="xl"> | ||
📸 What kind of photos should I upload to the platform? | ||
</Text> | ||
<Text> | ||
We recommend that you upload a variety of photos to ensure that your | ||
avatar is as accurate as possible. This may include close-up shots of | ||
your face, photos of your profile, and full-body shots. {`It's`}{" "} | ||
important to make sure that your photos are clear and of high quality, | ||
and that they do not include any other people or animals. We also | ||
recommend that you include a range of expressions, locations, | ||
backgrounds, and perspectives in your photos to create the most | ||
accurate avatar possible. | ||
</Text> | ||
<Text fontWeight="bold" fontSize="xl"> | ||
👩🎨 How similar will the avatar be to my appearance? | ||
</Text> | ||
<Text> | ||
The accuracy of your avatar will largely depend on the number and | ||
variety of the photos that you provide. The better and more diverse | ||
the photos are, the easier it will be for the AI to understand and | ||
replicate your facial and bodily characteristics. As a result, your | ||
avatar will be more likely to closely resemble your actual appearance! | ||
</Text> | ||
<Text fontWeight="bold" fontSize="xl"> | ||
💰 Is it possible to obtain a refund? | ||
</Text> | ||
<Text> | ||
It is possible to obtain a refund for purchases made within the first | ||
14 days, as long as you have not yet trained the AI. However, once the | ||
14-day period has passed or if you have already used the service (by | ||
clicking on the train button), you will no longer be eligible for a | ||
refund. | ||
</Text> | ||
<Text> | ||
Please ensure that you upload a sufficient number of high-quality | ||
photos to avoid disappointment with the generated avatars! | ||
</Text> | ||
<Text fontWeight="bold" fontSize="xl"> | ||
🖼 What will happen to my photos? | ||
</Text> | ||
<Text> | ||
You may delete all of the photos and datasets associated with the | ||
studio by deleting the studio from your account. Once the studio | ||
credits have been exhausted, the model will be automatically deleted | ||
within 24 hours. | ||
</Text> | ||
<Text> | ||
To request that your account and all associated data be deleted, | ||
please send an email to{" "} | ||
<Link href="mailto:support@photoshot">support@photoshot</Link>. Please | ||
note that by deleting your account, you will no longer have access to | ||
any of the data or content associated with your account. | ||
</Text> | ||
</VStack> | ||
</PageContainer> | ||
); | ||
}; | ||
|
||
export default Terms; |
Oops, something went wrong.
6d5502f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
photoshot – ./
photoshot-git-main-shinework.vercel.app
photoshot.app
photoshot-shinework.vercel.app
photoshot.vercel.app
www.photoshot.app