Skip to content
This repository has been archived by the owner on Feb 21, 2025. It is now read-only.

Adds a very manual but very sincere happy new year message #136

Merged
merged 1 commit into from
Dec 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions src/pages/search/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useEffect, useRef, useState } from "react";
import { Box, Container, Flex, Space, Stack } from "@mantine/core";
import { Box, Container, Flex, Space, Stack, Text } from "@mantine/core";
import SearchBar from "@/components/general/input/SearchBar/SearchBar";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
Expand Down Expand Up @@ -138,7 +138,14 @@ const Index = () => {
}}
/>
</form>
<GameSearchTips className={"w-full mt-2"} />
<Box className={"w-full mt-2"}>
<Text className={"text-start text-xs text-dimmed"}>
The GameNode team wishes you a happy new year!
Thanks for staying with us through 2024.
</Text>
</Box>

{/*<GameSearchTips className={"w-full mt-2"} />*/}
</Box>
<Box
className={
Expand Down