Compare commits
6 Commits
main
...
feature/mi
| Author | SHA1 | Date | |
|---|---|---|---|
| ece682a338 | |||
| c216edcf0c | |||
| f52e42deae | |||
| 72deedd3e7 | |||
| acf681f1eb | |||
| edc577d7d1 |
@@ -3,7 +3,7 @@
|
||||
{
|
||||
"name": "Node.js & TypeScript",
|
||||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
||||
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm"
|
||||
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
|
||||
|
||||
// Features to add to the dev container. More info: https://containers.dev/features.
|
||||
// "features": {},
|
||||
@@ -12,7 +12,12 @@
|
||||
// "forwardPorts": [],
|
||||
|
||||
// Use 'postCreateCommand' to run commands after the container is created.
|
||||
// "postCreateCommand": "yarn install",
|
||||
"postCreateCommand": "npm install",
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": ["bradlc.vscode-tailwindcss", "esbenp.prettier-vscode"]
|
||||
}
|
||||
}
|
||||
|
||||
// Configure tool-specific properties.
|
||||
// "customizations": {},
|
||||
|
||||
1
.gitattributes
vendored
Normal file
@@ -0,0 +1 @@
|
||||
* text=auto
|
||||
2
.gitconfig
Normal file
@@ -0,0 +1,2 @@
|
||||
core.autocrlf=false
|
||||
core.eol=lf
|
||||
5
.gitignore
vendored
@@ -1 +1,6 @@
|
||||
# Node files
|
||||
node_modules
|
||||
|
||||
# Next files
|
||||
.next
|
||||
out
|
||||
35
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Debug",
|
||||
"request": "launch",
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
"dev"
|
||||
],
|
||||
"runtimeExecutable": "npm",
|
||||
"type": "node"
|
||||
},
|
||||
{
|
||||
"name": "Build",
|
||||
"request": "launch",
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
"build"
|
||||
],
|
||||
"runtimeExecutable": "npm",
|
||||
"type": "node"
|
||||
},
|
||||
{
|
||||
"name": "Start",
|
||||
"request": "launch",
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
"start"
|
||||
],
|
||||
"runtimeExecutable": "npm",
|
||||
"type": "node"
|
||||
}
|
||||
]
|
||||
}
|
||||
37
README.md
@@ -1,7 +1,36 @@
|
||||
# Montell.se
|
||||
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
|
||||
|
||||
This is an old website i wrote in 2017. At the time we had a customer that needed some help with an existing knockout.js application and I needed to familiarize myself with the framework.
|
||||
## Getting Started
|
||||
|
||||
It's just a static content site with Knockout, JQuery, and Sammy to handle user interaction and navigation.
|
||||
First, run the development server:
|
||||
|
||||
At the time I did not know of the the concept of packaging your site with a bundler so dependencies are either linked in or part of the repository.
|
||||
```bash
|
||||
npm run dev
|
||||
# or
|
||||
yarn dev
|
||||
# or
|
||||
pnpm dev
|
||||
# or
|
||||
bun dev
|
||||
```
|
||||
|
||||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
||||
|
||||
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
|
||||
|
||||
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
|
||||
|
||||
## Learn More
|
||||
|
||||
To learn more about Next.js, take a look at the following resources:
|
||||
|
||||
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
||||
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
||||
|
||||
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
|
||||
|
||||
## Deploy on Vercel
|
||||
|
||||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
||||
|
||||
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
|
||||
|
||||
16
eslint.config.mjs
Normal file
@@ -0,0 +1,16 @@
|
||||
import { dirname } from "path";
|
||||
import { fileURLToPath } from "url";
|
||||
import { FlatCompat } from "@eslint/eslintrc";
|
||||
|
||||
const __filename = fileURLToPath(import.meta.url);
|
||||
const __dirname = dirname(__filename);
|
||||
|
||||
const compat = new FlatCompat({
|
||||
baseDirectory: __dirname,
|
||||
});
|
||||
|
||||
const eslintConfig = [
|
||||
...compat.extends("next/core-web-vitals", "next/typescript"),
|
||||
];
|
||||
|
||||
export default eslintConfig;
|
||||
5
next-env.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
/// <reference types="next" />
|
||||
/// <reference types="next/image-types/global" />
|
||||
|
||||
// NOTE: This file should not be edited
|
||||
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
|
||||
8
next.config.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
output: "export",
|
||||
/* config options here */
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
1
old/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
node_modules
|
||||
|
Before Width: | Height: | Size: 766 B After Width: | Height: | Size: 766 B |
1074
old/package-lock.json
generated
Normal file
15
old/package.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "montell-website",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"dev": "serve ."
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"serve": "^14.2.4"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 434 KiB After Width: | Height: | Size: 434 KiB |
5927
package-lock.json
generated
34
package.json
@@ -1,15 +1,31 @@
|
||||
{
|
||||
"name": "montell-website",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"name": "montell.se",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"dev": "serve ."
|
||||
"dev": "next dev --turbopack",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
||||
"@fortawesome/free-brands-svg-icons": "^6.7.2",
|
||||
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
||||
"@fortawesome/react-fontawesome": "^0.2.2",
|
||||
"next": "15.1.3",
|
||||
"react": "^19.0.0",
|
||||
"react-dom": "^19.0.0"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"serve": "^14.2.4"
|
||||
"@eslint/eslintrc": "^3",
|
||||
"@types/node": "^20",
|
||||
"@types/react": "^19",
|
||||
"@types/react-dom": "^19",
|
||||
"eslint": "^9",
|
||||
"eslint-config-next": "15.1.3",
|
||||
"postcss": "^8",
|
||||
"tailwindcss": "^3.4.1",
|
||||
"typescript": "^5"
|
||||
}
|
||||
}
|
||||
8
postcss.config.mjs
Normal file
@@ -0,0 +1,8 @@
|
||||
/** @type {import('postcss-load-config').Config} */
|
||||
const config = {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
1
public/file.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 391 B |
1
public/globe.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
1
public/next.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
1
public/vercel.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1155 1000"><path d="m577.3 0 577.4 1000H0z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 128 B |
1
public/window.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>
|
||||
|
After Width: | Height: | Size: 385 B |
27
src/app/components/layout/content.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
import H1 from "../typography/h1";
|
||||
import P from "../typography/p";
|
||||
|
||||
type Props = {
|
||||
echo: string;
|
||||
title: string;
|
||||
className?: string;
|
||||
children: React.ReactNode;
|
||||
};
|
||||
const Content = (props: Props) => {
|
||||
return (
|
||||
<div className={`pt-10 px-10 z-50 ${props.className}`}>
|
||||
<div className="pb-6">
|
||||
<P size="small" spacing="wide">
|
||||
#!/bin/bash
|
||||
</P>
|
||||
<P size="small" spacing="wide">
|
||||
echo ${props.echo.toUpperCase()}
|
||||
</P>
|
||||
</div>
|
||||
<H1 className="pb-6">{props.title}</H1>
|
||||
{props.children}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Content;
|
||||
14
src/app/components/layout/main-container.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
type Props = {
|
||||
children: React.ReactNode;
|
||||
};
|
||||
const MainContainer = (props: Props) => {
|
||||
return (
|
||||
<div className="border-white xl:border-[24px] lg:border-[20px] md:border-[20px] border-4 box-border min-h-full max-h-full min-w-full max-w-full m-0 p-0 absolute transition-all">
|
||||
<div className="m-0 p-4 min-h-full max-h-full min-w-full max-w-full font-[family-name:var(--font-geist-sans)] xl:border-[24px] lg:border-[20px] md:border-[20px] border-4 border-zinc-200 text-gray-800 box-border absolute transition-all">
|
||||
{props.children}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default MainContainer;
|
||||
43
src/app/components/layout/menu.tsx
Normal file
@@ -0,0 +1,43 @@
|
||||
"use client";
|
||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||
import {
|
||||
faBars as closedIcon,
|
||||
faClose as openIcon,
|
||||
} from "@fortawesome/free-solid-svg-icons";
|
||||
import { PropsWithChildren } from "../types";
|
||||
import { useState } from "react";
|
||||
|
||||
const Menu = ({ children }: PropsWithChildren) => {
|
||||
const [isOpen, setIsOpen] = useState<boolean>(false);
|
||||
return (
|
||||
<>
|
||||
<div
|
||||
onClick={() => setIsOpen((prev) => !prev)}
|
||||
className={`w-6 h-6 ${
|
||||
isOpen ? "bg-[#00ff77]" : "bg-zinc-700"
|
||||
} absolute grid items-center justify-items-center cursor-pointer text-white hover:bg-[#00ff77] transition-all z-50`}
|
||||
>
|
||||
<FontAwesomeIcon
|
||||
className="w-3 h-3"
|
||||
icon={isOpen ? openIcon : closedIcon}
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
className={`${
|
||||
isOpen ? "opacity-5" : "opacity-0 translate-x-full"
|
||||
} fixed transition-opacity bg-black min-w-full min-h-full top-0 left-0 m-0 p-0 duration-500`}
|
||||
></div>
|
||||
<div
|
||||
onClick={() => setIsOpen(false)}
|
||||
className={`${
|
||||
isOpen
|
||||
? "h-[350px] sm:w-[350px] w-[250px] opacity-100 sm:p-14 p-14"
|
||||
: "w-0 h-0 overflow-hidden text-transparent p-0 *:opacity-0 opacity-0"
|
||||
} absolute mt-3 ml-3 transition-all duration-500 bg-white shadow-[#CCC_2px_2px_20px_1px] grid items-center justify-items-center *:transition-all`}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
};
|
||||
export default Menu;
|
||||
11
src/app/components/types.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { ReactNode } from "react";
|
||||
|
||||
interface Props {
|
||||
className?: string
|
||||
}
|
||||
|
||||
interface PropsWithChildren extends Props {
|
||||
children?: ReactNode
|
||||
}
|
||||
|
||||
export type { Props, PropsWithChildren }
|
||||
35
src/app/components/typography/a.tsx
Normal file
@@ -0,0 +1,35 @@
|
||||
import React from "react";
|
||||
|
||||
import { shareTechMono } from "@/app/fonts";
|
||||
import { PropsWithChildren } from "../types";
|
||||
import Link from "next/link";
|
||||
|
||||
interface Props extends PropsWithChildren {
|
||||
spacing?: "wide" | "normal";
|
||||
size?: "normal" | "large";
|
||||
href: string;
|
||||
padding?: boolean;
|
||||
}
|
||||
|
||||
const A = ({
|
||||
children,
|
||||
className,
|
||||
spacing = "normal",
|
||||
href,
|
||||
size = "normal",
|
||||
padding = false,
|
||||
}: Props) => {
|
||||
const spacingClass =
|
||||
spacing === "normal" ? "-tracking-tight" : "-tracking-tighter";
|
||||
const sizeClass = size === "normal" ? "text-base" : "text-2xl";
|
||||
const paddingClass = padding ? "p-1" : undefined;
|
||||
return (
|
||||
<Link
|
||||
href={href}
|
||||
className={`${shareTechMono.className} ${spacingClass} ${sizeClass} ${paddingClass} text-gray leading-4 transition-all shadow-[#00ff77_0px_-3px_0px_0px_inset] hover:shadow-[#00ff77_0px_-32px_0px_0px_inset] ${className}`}
|
||||
>
|
||||
{children}
|
||||
</Link>
|
||||
);
|
||||
};
|
||||
export default A;
|
||||
9
src/app/components/typography/h1.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from "react";
|
||||
|
||||
import { shareTechMono } from "@/app/fonts";
|
||||
import { PropsWithChildren } from "../types";
|
||||
|
||||
const H1 = ({ children, className }: PropsWithChildren) => {
|
||||
return <h1 className={`text-4xl font-bold ${shareTechMono.className} text-zinc-600 uppercase -tracking-tight ${className}`}>> {children}</h1>
|
||||
}
|
||||
export default H1;
|
||||
14
src/app/components/typography/p.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from "react";
|
||||
import Span from "./span";
|
||||
import { PropsWithChildren } from "../types";
|
||||
|
||||
interface Props extends PropsWithChildren {
|
||||
size?: "small" | "normal",
|
||||
spacing?: "wide" | "normal"
|
||||
}
|
||||
|
||||
const P = ({ children, className, size = "normal", spacing = "normal" }: Props) => {
|
||||
const sizeClass = size === "normal" ? "text-base" : "text-sm"
|
||||
return <p className={`${sizeClass} ${className}`}><Span spacing={spacing}>{children}</Span></p>
|
||||
}
|
||||
export default P;
|
||||
21
src/app/components/typography/span.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import React from "react";
|
||||
|
||||
import { ubuntuMono } from "@/app/fonts";
|
||||
import { PropsWithChildren } from "../types";
|
||||
|
||||
interface Props extends PropsWithChildren {
|
||||
spacing?: "wide" | "normal";
|
||||
}
|
||||
|
||||
const Span = ({ children, className, spacing = "normal" }: Props) => {
|
||||
const spacingClass =
|
||||
spacing === "normal" ? "-tracking-tight" : "-tracking-tighter";
|
||||
return (
|
||||
<span
|
||||
className={`${ubuntuMono.className} ${spacingClass} text-gray-700 bg-zinc-200 leading-4 ${className}`}
|
||||
>
|
||||
{children}
|
||||
</span>
|
||||
);
|
||||
};
|
||||
export default Span;
|
||||
62
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,62 @@
|
||||
import Content from "@/app/components/layout/content";
|
||||
import P from "../components/typography/p";
|
||||
import Image from "next/image";
|
||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||
import {
|
||||
faGithub,
|
||||
faLinkedin,
|
||||
faGitAlt,
|
||||
} from "@fortawesome/free-brands-svg-icons";
|
||||
|
||||
export default function Contact() {
|
||||
return (
|
||||
<Content echo="user" title="contact">
|
||||
<div className="flex flex-col">
|
||||
<div className="flex sm:flex-row flex-col">
|
||||
<Image
|
||||
src="/profile.svg"
|
||||
alt="Silhouette of face in profile"
|
||||
width="200"
|
||||
height="100"
|
||||
className="border-zinc-200 border-8 p-4"
|
||||
/>
|
||||
<div
|
||||
className={`ml-0 mt-10 sm:ml-10 sm:mt-0 flex flex-col sm:justify-end`}
|
||||
>
|
||||
<P>Zackarias Montell</P>
|
||||
<P>Owner and Software Developer</P>
|
||||
<P>IT at montell dot se</P>
|
||||
</div>
|
||||
</div>
|
||||
<div className="grid grid-flow-col mt-10 justify-start sm:justify-around md:justify-start">
|
||||
<a href="https://git.zacke.dev/wholteza" target="_blank">
|
||||
<FontAwesomeIcon
|
||||
icon={faGitAlt}
|
||||
size="3x"
|
||||
className="pr-5 sm:px-0 md:pr-5"
|
||||
/>
|
||||
</a>
|
||||
|
||||
<a href="https://github.com/Wholteza" target="_blank">
|
||||
<FontAwesomeIcon
|
||||
icon={faGithub}
|
||||
size="3x"
|
||||
className="px-5 sm:px-0 md:px-5"
|
||||
/>
|
||||
</a>
|
||||
|
||||
<a
|
||||
href="https://se.linkedin.com/in/zackarias-montell"
|
||||
target="_blank"
|
||||
>
|
||||
<FontAwesomeIcon
|
||||
icon={faLinkedin}
|
||||
size="3x"
|
||||
className="pl-5 sm:px-0 md:pl-5"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</Content>
|
||||
);
|
||||
}
|
||||
BIN
src/app/favicon.ico
Normal file
|
After Width: | Height: | Size: 25 KiB |
12
src/app/fonts.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
import { Share_Tech_Mono, Ubuntu_Mono } from "next/font/google"
|
||||
|
||||
|
||||
const shareTechMono = Share_Tech_Mono({ weight: ["400"], style: "normal", subsets: ["latin"] });
|
||||
const ubuntuMono = Ubuntu_Mono({ weight: ["400", "700"], subsets: ["latin"] });
|
||||
|
||||
|
||||
export {
|
||||
shareTechMono,
|
||||
ubuntuMono
|
||||
}
|
||||
33
src/app/globals.css
Normal file
@@ -0,0 +1,33 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
:root {
|
||||
--background: #ffffff;
|
||||
--foreground: #171717;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background: #0a0a0a;
|
||||
--foreground: #ededed;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
color: var(--foreground);
|
||||
background: var(--background);
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
@media (max-width: 639px) {
|
||||
html {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 640px) {
|
||||
html {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
47
src/app/layout.tsx
Normal file
@@ -0,0 +1,47 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import MainContainer from "./components/layout/main-container";
|
||||
import Menu from "./components/layout/menu";
|
||||
import A from "./components/typography/a";
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-white`}
|
||||
>
|
||||
<MainContainer>
|
||||
<Menu>
|
||||
<A href="/" size="large" padding>
|
||||
HOME
|
||||
</A>
|
||||
<A href="/contact" size="large" padding>
|
||||
CONTACT
|
||||
</A>
|
||||
</Menu>
|
||||
{children}
|
||||
</MainContainer>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
17
src/app/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import Content from "./components/layout/content";
|
||||
import P from "./components/typography/p";
|
||||
|
||||
export default function Main() {
|
||||
return (
|
||||
<Content echo="greetings" title="hi there">
|
||||
<P>
|
||||
I'm a software developer for hire specializing in modern web
|
||||
development and data integrations.
|
||||
</P>
|
||||
<P className="pt-5">
|
||||
On this site you can find my contact information and links to some of my
|
||||
projects.
|
||||
</P>
|
||||
</Content>
|
||||
);
|
||||
}
|
||||
18
tailwind.config.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { Config } from "tailwindcss";
|
||||
|
||||
export default {
|
||||
content: [
|
||||
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
background: "var(--background)",
|
||||
foreground: "var(--foreground)",
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
} satisfies Config;
|
||||
27
tsconfig.json
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2017",
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"noEmit": true,
|
||||
"esModuleInterop": true,
|
||||
"module": "esnext",
|
||||
"moduleResolution": "bundler",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "preserve",
|
||||
"incremental": true,
|
||||
"plugins": [
|
||||
{
|
||||
"name": "next"
|
||||
}
|
||||
],
|
||||
"paths": {
|
||||
"@/*": ["./src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||