File tree Expand file tree Collapse file tree 10 files changed +40
-21
lines changed
Expand file tree Collapse file tree 10 files changed +40
-21
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,15 @@ import { Header } from "@/components/Header";
99import type { Metadata } from "next" ;
1010
1111export const metadata : Metadata = {
12+ metadataBase : new URL ( "https://dokploy.com" ) ,
1213 title : {
1314 default : "Dokploy - Effortless Deployment Solutions" ,
1415 template : "%s | Simplify Your DevOps" ,
1516 } ,
17+ icons : {
18+ icon : "icon.svg" ,
19+ apple : "apple-touch-icon.png" ,
20+ } ,
1621 alternates : {
1722 canonical : "https://dokploy.com" ,
1823 languages : {
@@ -45,7 +50,13 @@ export const metadata: Metadata = {
4550 siteName : "Dokploy" ,
4651 images : [
4752 {
48- url : "http://dokploy.com/og.png" ,
53+ url : "https://dokploy.com/og.png" ,
54+ } ,
55+ {
56+ url : "https://dokploy.com/icon.svg" ,
57+ width : 24 ,
58+ height : 24 ,
59+ alt : "Dokploy Logo" ,
4960 } ,
5061 ] ,
5162 } ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ import type { Metadata } from "next" ;
12import type { ReactNode } from "react" ;
23
34type Props = {
45 children : ReactNode ;
56} ;
67
8+ // export const metadata: Metadata = {
9+ // metadataBase: new URL("https://dokploy.com"),
10+ // title: "Dokploy - Deploy your applications with ease",
11+ // description: "Deploy your applications with ease using Dokploy",
12+ // icons: {
13+ // icon: "icon.svg",
14+ // apple: "apple-touch-icon.png",
15+ // },
16+ // openGraph: {
17+ // title: "Dokploy - Deploy your applications with ease",
18+ // description: "Deploy your applications with ease using Dokploy",
19+ // images: "favicon.ico",
20+ // type: "website",
21+ // },
22+ // twitter: {
23+ // card: "summary_large_image",
24+ // title: "Dokploy - Deploy your applications with ease",
25+ // description: "Deploy your applications with ease using Dokploy",
26+ // images: ["/og.png"],
27+ // },
28+ // };
29+
730// Since we have a `not-found.tsx` page on the root, a layout file
831// is required, even if it's just passing children through.
932export default function RootLayout ( { children } : Props ) {
10- return children ;
33+ return (
34+ < html lang = "en" >
35+ < body > { children } </ body >
36+ </ html >
37+ ) ;
1138}
Original file line number Diff line number Diff line change @@ -205,20 +205,6 @@ export function Hero() {
205205 ) }
206206 />
207207 </ div >
208- < a
209- href = "https://www.producthunt.com/posts/dokploy-cloud?embed=true& utm_source = badge - featured & utm_medium = badge & utm_souce = badge - dokploy & #0045 ; cloud "
210- target = "_blank"
211- rel = "noreferrer"
212- >
213- < img
214- className = "absolute bottom-6 right-8 h-[54px] w-[250px]"
215- src = "https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=596245& theme = dark "
216- alt = "Dokploy Cloud - The open source alternative to Vercel, Heroku and Netlify | Product Hunt"
217- // style="width: 250px; height: 54px;"
218- width = "250"
219- height = "54"
220- />
221- </ a >
222208 </ div >
223209 ) ;
224210}
You can’t perform that action at this time.
0 commit comments