-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:tiarasjec/frontend
- Loading branch information
Showing
7 changed files
with
411 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,29 @@ | ||
"use client"; | ||
|
||
import * as React from "react"; | ||
import Container from "@/components/shared/container"; | ||
import { tiaraFont } from "@/lib/fonts"; | ||
import { cn } from "@/lib/utils"; | ||
import { legalInfo } from "../../../data/legal_Info"; | ||
import { Text } from "@/components/shared/text"; | ||
|
||
export default function Privacy() { | ||
return ( | ||
<Container className="mx-auto "> | ||
<div className="py-4 mx-6 sm:mx-12 space-y-4 pt-32 text-white"> | ||
<Text variant="h1" className={cn("text-5xl", tiaraFont)}>Privacy Policy</Text> | ||
<p> | ||
At Tiara, we take your privacy seriously and are committed to protecting your personal information. This | ||
privacy policy explains how we collect, use, and safeguard your data. By registering for our festival | ||
competition, you agree to the terms of this privacy policy. | ||
</p> | ||
{legalInfo.policy.map((policy, index) => ( | ||
<div key={index}> | ||
<Text variant="h2" className={cn("text-2xl", tiaraFont)}>{policy.title}</Text> | ||
<p dangerouslySetInnerHTML={{ __html: policy.description }}></p> | ||
</div> | ||
))} | ||
</div> | ||
</Container> | ||
); | ||
} |
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,24 @@ | ||
"use client"; | ||
|
||
import * as React from "react"; | ||
import Container from "@/components/shared/container"; | ||
import { tiaraFont } from "@/lib/fonts"; | ||
import { cn } from "@/lib/utils"; | ||
import { legalInfo } from "../../../data/legal_Info" | ||
import { Text } from "@/components/shared/text"; | ||
export default function Refund() { | ||
|
||
return ( | ||
<Container className="mx-auto"> | ||
<div className="py-4 mx-6 sm:mx-12 space-y-4 pt-32 text-white"> | ||
<Text variant="h1" className={cn("text-5xl", tiaraFont)}>Refund Policy</Text> | ||
{legalInfo.Refund.map((refund, index) => ( | ||
<div key={index}> | ||
<Text variant="h2" className={cn("text-2xl", tiaraFont)}>{refund.title}</Text> | ||
<p dangerouslySetInnerHTML={{ __html: refund.description }}></p> | ||
</div> | ||
))} | ||
</div> | ||
</Container> | ||
); | ||
} |
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,24 @@ | ||
"use client"; | ||
|
||
import * as React from "react"; | ||
import Container from "@/components/shared/container"; | ||
import { tiaraFont } from "@/lib/fonts"; | ||
import { cn } from "@/lib/utils"; | ||
import { legalInfo } from "../../../data/legal_Info" | ||
import { Text } from "@/components/shared/text"; | ||
export default function Terms() { | ||
|
||
return ( | ||
<Container className="mx-auto"> | ||
<div className="py-4 mx-6 sm:mx-12 space-y-4 pt-32 text-white"> | ||
<Text variant="h1" className={cn("text-5xl", tiaraFont)}>Terms & Conditions</Text> | ||
{legalInfo.terms.map((terms, index) => ( | ||
<div key={index}> | ||
<Text variant="h2" className={cn("text-2xl", tiaraFont)}>{terms.title}</Text> | ||
<p dangerouslySetInnerHTML={{ __html: terms.description }}></p> | ||
</div> | ||
))} | ||
</div> | ||
</Container> | ||
); | ||
} |
Oops, something went wrong.