|
1 |
| -import { WordRotate } from "@theliaison/ui/magicui/word-rotate"; |
2 | 1 | import type { Metadata } from "next";
|
3 | 2 | import Link from "next/link";
|
4 | 3 | import { Header } from "./[giftId]/header";
|
| 4 | +import { QuotesRotate } from "~/components/quotes-rotate"; |
5 | 5 |
|
6 | 6 | const navLinks = [
|
7 | 7 | {
|
@@ -51,28 +51,14 @@ export default function Layout({ children }: { children: React.ReactNode }) {
|
51 | 51 | <Header />
|
52 | 52 | {children}
|
53 | 53 | <footer className="mt-24 mb-8 max-w-screen-xl mx-auto px-6 lg:px-8 text-white">
|
| 54 | + <div className="flex items-center justify-center mx-auto w-full"> |
| 55 | + <QuotesRotate isDark /> |
| 56 | + </div> |
54 | 57 | <div className="flex items-center justify-center">
|
55 | 58 | <span className="text-medium font-medium">
|
56 | 59 | TL <strong>Gifting Concierge</strong>
|
57 | 60 | </span>
|
58 | 61 | </div>
|
59 |
| - <div className="flex items-center justify-center mx-auto w-full"> |
60 |
| - <WordRotate |
61 |
| - words={[ |
62 |
| - '"A gift consist not in what is done or given, but in the intention of the giver or doer." - Seneca', |
63 |
| - '"The manner of giving is worth more than the gift." - Pierre Corneille', |
64 |
| - '"Every gift which is given, even though it be small, is in reality great, if it is given with affection." - Pindar', |
65 |
| - '"We make a living by what we get, but we make a life by what we give." - Winston Churchill', |
66 |
| - '"No one has ever overcome poor by giving." - Anne Frank', |
67 |
| - '"It is not how much we give, but how much love we put into giving." - Mother Teresa', |
68 |
| - '"For it is in giving that we receive." - Francis of Assisi', |
69 |
| - '"Gratitude is not only the greatest of virtues, but the parent of all others." - Cicero', |
70 |
| - '"When we give cheerfully and accept gratefully, everyone is blessed." - Maya Angelou', |
71 |
| - '"The meaning of life is to find your gift. The purpose of life is to give it away." - Pablo Picasso', |
72 |
| - ]} |
73 |
| - duration={5000} |
74 |
| - /> |
75 |
| - </div> |
76 | 62 |
|
77 | 63 | <div className="flex flex-wrap justify-center gap-x-4 gap-y-1">
|
78 | 64 | {navLinks.map((item) => (
|
|
0 commit comments