Skip to content

Commit 301c141

Browse files
committed
privacy prolicy, terms and conditions
1 parent e3a9beb commit 301c141

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

client-test/src/components/PrivacyPolicy/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client"
22

33
import { useState, useEffect } from "react"
4-
import { Shield, Eye, Cookie, Database, Mail, Users, Calendar } from "lucide-react"
4+
import { Shield, Eye, Cookie, Database, Mail, Users } from "lucide-react"
55
import { motion } from "framer-motion"
66
import { Card, CardContent } from "@/components/ui/card"
77
import { DottedBackground } from "../dotted-background"

client-test/src/components/SignUp/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export default function RegisterPage() {
3232
const [error, setError] = useState<string>("");
3333
const [showPassword, setShowPassword] = useState(false); // State for password visibility
3434
const [showConfirmPassword, setShowConfirmPassword] = useState(false); // State for confirm password visibility
35-
const [acceptedTerms, setAcceptedTerms] = useState(false); // State for terms acceptance
3635

3736
const togglePasswordVisibility = () => {
3837
setShowPassword(!showPassword);

client-test/src/components/TermsConditions/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client"
22

33
import { useState, useEffect } from "react"
4-
import { FileText, User, Shield, AlertTriangle, Scale, Gavel, Calendar, Mail } from "lucide-react"
4+
import { FileText, User, Shield, AlertTriangle, Scale, Gavel, Mail } from "lucide-react"
55
import { motion } from "framer-motion"
66
import { Card, CardContent } from "@/components/ui/card"
77
import { DottedBackground } from "../dotted-background"

0 commit comments

Comments
 (0)