-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
1,021 additions
and
540 deletions.
There are no files selected for viewing
This file contains 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 file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import styled from "styled-components"; | ||
|
||
const {VITE_BASE_URL} = import.meta.env; | ||
|
||
const BgContainer = styled.div<{}>` | ||
position: relative; | ||
background-image: url(${VITE_BASE_URL}/images/bgImage.jpg); | ||
background-size: cover; | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
`; | ||
|
||
export default BgContainer; |
This file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import React from "react"; | ||
import {FaGithub, FaLinkedin} from "react-icons/fa"; | ||
import {MdOutlineAlternateEmail} from "react-icons/md"; | ||
|
||
const Footer: React.FC = () => { | ||
return ( | ||
<div | ||
style={{backgroundColor: "rgba(60, 60, 60, 0.9)"}} | ||
className="text-base-100 py-6" | ||
> | ||
<div className="container mx-auto flex flex-col md:flex-row justify-between items-center"> | ||
<div className="text-sm md:text-base mb-4 md:mb-0"> | ||
© {new Date().getFullYear()} Hanna Gaudasińska-Zapaśnik. All | ||
rights reserved. | ||
</div> | ||
<div className="flex space-x-4"> | ||
<a | ||
href="mailto:[email protected]" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="hover:text-gray-400" | ||
> | ||
<MdOutlineAlternateEmail size={24} /> | ||
</a> | ||
<a | ||
href="https://github.com/HGZdev" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="hover:text-gray-400" | ||
> | ||
<FaGithub size={24} /> | ||
</a> | ||
<a | ||
href="https://www.linkedin.com/in/hanna-gaudasinska-zapasnik/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="hover:text-gray-400" | ||
> | ||
<FaLinkedin size={24} /> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Footer; |
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const {VITE_BASE_URL} = import.meta.env; | ||
|
||
const Logo = ({className}: {className?: string}) => { | ||
return ( | ||
<span> | ||
<img className={className} src={`${VITE_BASE_URL}/favicon.ico`} /> | ||
</span> | ||
); | ||
}; | ||
|
||
export default Logo; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import {Helmet} from "react-helmet"; | ||
|
||
const Metadata = () => ( | ||
<Helmet> | ||
{/* Basic Meta Tags */} | ||
<meta charSet="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta | ||
name="description" | ||
content="Tablet Weaving Editor is a web-based tool that allows users to design, edit, and visualize tablet weaving patterns in real-time. Create intricate designs with ease." | ||
/> | ||
<meta name="author" content="Hanna Gaudasińska-Zapaśnik" /> | ||
{/* Open Graph / Facebook */} | ||
<meta property="og:type" content="website" /> | ||
<meta | ||
property="og:title" | ||
content="Tablet Weaving Editor - Design and Edit Patterns" | ||
/> | ||
<meta | ||
property="og:description" | ||
content="A free, web-based tool to design and edit tablet weaving patterns. Create intricate designs with ease and visualize them in real-time." | ||
/> | ||
<meta | ||
property="og:url" | ||
content="https://hgzdev.github.io/tablet-weaving-editor/" | ||
/> | ||
{/* <meta | ||
property="og:image" | ||
content="https://hgzdev.github.io/tablet-weaving-editor/og-image.jpg" | ||
/> */} | ||
{/* Twitter */} | ||
<meta name="twitter:card" content="summary_large_image" /> | ||
<meta | ||
name="twitter:title" | ||
content="Tablet Weaving Editor - Design and Edit Patterns" | ||
/> | ||
<meta | ||
name="twitter:description" | ||
content="Create, design, and edit tablet weaving patterns using this easy-to-use, web-based tool." | ||
/> | ||
<meta | ||
name="twitter:url" | ||
content="https://hgzdev.github.io/tablet-weaving-editor/" | ||
/> | ||
{/* <meta | ||
name="twitter:image" | ||
content="https://hgzdev.github.io/tablet-weaving-editor/og-image.jpg" | ||
/> */} | ||
{/* Favicon */} | ||
<link | ||
rel="icon" | ||
href="https://hgzdev.github.io/tablet-weaving-editor/favicon.ico" | ||
type="image/x-icon" | ||
/> | ||
<title>Tablet Weaving Editor</title> | ||
</Helmet> | ||
); | ||
|
||
export default Metadata; |
Oops, something went wrong.