This file contains hidden or 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
"use client" | |
import { Card, CardContent, CardTitle } from "./ui/card"; | |
import Tilt from "react-parallax-tilt"; | |
import { motion } from "framer-motion"; | |
import { useState } from "react"; | |
const testimonials = [ | |
{ | |
name: "Alice", |
This file contains hidden or 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 is an example of some badly written code. What would you refactor? | |
type User struct { | |
Uuid string | |
FirstName string `db:"first_name"` | |
LastName string `db:"last_name"` | |
Email string | |
Password string | |
Address *Address | |
} |