mirror of
https://github.com/skidoodle/erettsegi-browser.git
synced 2025-02-15 05:39:15 +01:00
téma váltó funkció gomb implementálása a kódbau
This commit is contained in:
parent
455cf84850
commit
3eb48a80c1
7 changed files with 2339 additions and 754 deletions
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
"name": "erettsegi-browser",
|
"name": "erettsegi-browser",
|
||||||
"version": "0.1.0",
|
"version": "6.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"author": "albert|skidoodle@gh",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
|
@ -22,6 +23,7 @@
|
||||||
"postcss": "8.4.29",
|
"postcss": "8.4.29",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-dom": "18.2.0",
|
"react-dom": "18.2.0",
|
||||||
|
"react-icons": "^4.11.0",
|
||||||
"tailwindcss": "3.3.3",
|
"tailwindcss": "3.3.3",
|
||||||
"typescript": "5.2.2"
|
"typescript": "5.2.2"
|
||||||
}
|
}
|
||||||
|
|
2986
pnpm-lock.yaml
generated
2986
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -1,28 +1,11 @@
|
||||||
import React from 'react'
|
import { Source } from '@/components/Source'
|
||||||
import Link from 'next/link'
|
import { ThemeSwitcher } from '@/components/ThemeSwitcher'
|
||||||
|
|
||||||
const Footer: React.FC = () => {
|
export const Footer = () => {
|
||||||
return (
|
return (
|
||||||
<div className="fixed bottom-0 py-4 left-0 right-0 text-center">
|
<div className="fixed bottom-0 py-5 left-0 right-0 text-center space-x-5">
|
||||||
<p className="text-sm text-gray-400">
|
<Source />
|
||||||
<Link
|
<ThemeSwitcher />
|
||||||
href="https://albert.lol"
|
|
||||||
target="_blank"
|
|
||||||
className="text-blue-500 hover:text-blue-700"
|
|
||||||
>
|
|
||||||
albert
|
|
||||||
</Link>
|
|
||||||
{' | '}
|
|
||||||
<Link
|
|
||||||
href="https://github.com/skidoodle/erettsegi-browser"
|
|
||||||
target="_blank"
|
|
||||||
className="text-blue-500 hover:text-blue-700"
|
|
||||||
>
|
|
||||||
github
|
|
||||||
</Link>
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Footer
|
|
||||||
|
|
16
src/components/Source.tsx
Normal file
16
src/components/Source.tsx
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
import { RiOpenSourceFill } from 'react-icons/ri'
|
||||||
|
import { Button } from '@nextui-org/button'
|
||||||
|
|
||||||
|
export const Source = () => {
|
||||||
|
return (
|
||||||
|
<Button
|
||||||
|
aria-label="Source Code"
|
||||||
|
size="sm"
|
||||||
|
onClick={() =>
|
||||||
|
window.open('https://github.com/skidoodle/erettsegi-browser')
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<RiOpenSourceFill size={20} />
|
||||||
|
</Button>
|
||||||
|
)
|
||||||
|
}
|
31
src/components/ThemeSwitcher.tsx
Normal file
31
src/components/ThemeSwitcher.tsx
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
import { BsSunFill, BsMoonFill } from 'react-icons/bs'
|
||||||
|
import { useEffect, useState } from 'react'
|
||||||
|
import { useTheme } from 'next-themes'
|
||||||
|
import { Button } from '@nextui-org/button'
|
||||||
|
|
||||||
|
export const ThemeSwitcher = () => {
|
||||||
|
const [mounted, setMounted] = useState(false)
|
||||||
|
const { theme, setTheme } = useTheme()
|
||||||
|
|
||||||
|
const toggle = () => {
|
||||||
|
if (theme === 'dark') {
|
||||||
|
setTheme('light')
|
||||||
|
} else {
|
||||||
|
setTheme('dark')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
useEffect(() => setMounted(true), [])
|
||||||
|
|
||||||
|
if (!mounted) return null
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Button aria-label="Switch Theme" size="sm" onClick={() => toggle()}>
|
||||||
|
{theme === 'light' ? (
|
||||||
|
<BsMoonFill style={{ fill: 'black' }} size={20} />
|
||||||
|
) : (
|
||||||
|
<BsSunFill size={20} />
|
||||||
|
)}
|
||||||
|
</Button>
|
||||||
|
)
|
||||||
|
}
|
|
@ -1,10 +1,14 @@
|
||||||
import { useState, useEffect } from 'react'
|
import { useState, useEffect } from 'react'
|
||||||
import { useAvailableYears } from '@/utils/years'
|
import { useAvailableYears } from '@/utils/years'
|
||||||
import { subjects } from '@/utils/subjects'
|
import { subjects } from '@/utils/subjects'
|
||||||
import { Select, SelectItem } from '@nextui-org/select'
|
import {
|
||||||
import { Button, ButtonGroup } from '@nextui-org/button'
|
Select,
|
||||||
import { Divider } from '@nextui-org/divider'
|
SelectItem,
|
||||||
import Footer from '@/components/Footer'
|
Button,
|
||||||
|
ButtonGroup,
|
||||||
|
Divider,
|
||||||
|
} from '@nextui-org/react'
|
||||||
|
import { Footer } from '@/components/Footer'
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
const [flPdfLink, setflPdfLink] = useState<string>('')
|
const [flPdfLink, setflPdfLink] = useState<string>('')
|
||||||
|
@ -62,11 +66,14 @@ export default function Home() {
|
||||||
])
|
])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main className="dark:bg-[#121212] text-foreground bg-background">
|
<main className="dark:bg-[#121212] text-foreground bg-background py-5">
|
||||||
<div className="flex min-h-screen flex-col items-center justify-between p-24">
|
<h1 className="text-4xl font-bold text-blue-400 text-center mt-16">
|
||||||
<div className="container mx-auto mt-15">
|
Érettségi kereső
|
||||||
|
</h1>
|
||||||
|
<div className="flex min-h-screen flex-col items-center justify-between">
|
||||||
|
<div className="container mx-auto">
|
||||||
<div className="flex flex-col items-center justify-center">
|
<div className="flex flex-col items-center justify-center">
|
||||||
<div className="mb-3">
|
<div className="mt-5 mb-3">
|
||||||
<Select
|
<Select
|
||||||
selectionMode="single"
|
selectionMode="single"
|
||||||
label="Tárgy"
|
label="Tárgy"
|
||||||
|
@ -180,9 +187,9 @@ export default function Home() {
|
||||||
</ButtonGroup>
|
</ButtonGroup>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Footer />
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<Footer />
|
||||||
</main>
|
</main>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
html,
|
|
||||||
body {
|
body {
|
||||||
|
background-color: #121212;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue