Skip to content

Commit

Permalink
✨ head: seo title
Browse files Browse the repository at this point in the history
  • Loading branch information
skillzl committed Oct 11, 2023
1 parent f451787 commit 43102a1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pages/contact.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import React from 'react';
import { useForm } from '@formspree/react';

import Head from 'next/head'

export default function Contact() {
const [state] = useForm("contactForm");
if (state.succeeded) {
Expand All @@ -9,6 +11,9 @@ export default function Contact() {
return (

<div className="flex items-center justify-center p-12">
<Head>
<title>skillzl // contact</title>
</Head>
<div className="mx-auto w-full max-w-[550px]">
<form action="https://formbold.com/s/3Vgj5" method="POST">
<div className="mb-5">
Expand Down
5 changes: 5 additions & 0 deletions pages/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@ import Container from 'components/Container'
import projects from 'content/projects.json'
import ProjectComponent from 'components/Project'

import Head from 'next/head'

export default function Project() {
return (
<Container>
<Head>
<title>skillzl // projects</title>
</Head>
<section>
<ul className="grid grid-cols-1 justify-items-center gap-8 md:justify-items-start ">
{projects.map(({ id, ...rest }) => (
Expand Down

1 comment on commit 43102a1

@vercel
Copy link

@vercel vercel bot commented on 43102a1 Oct 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

skillzldev – ./

skillzl-me.vercel.app
skillzldev-git-main-skillzl.vercel.app
skillzl.dev
skillzldev-skillzl.vercel.app

Please sign in to comment.