Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 323dd5708a | |||
| 34088dbcb3 | |||
| 45e4bff3c2 | |||
| be41096713 | |||
| 10f25f1642 |
@@ -1,48 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Nunito_Sans } from "next/font/google";
|
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const nunitoSans = Nunito_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-nunito-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Freelance Services - Award-Winning Projects", description: "Discover specialized creative and strategic freelance services. Browse award-winning projects, book a consultation, and let's collaborate on your next success.", keywords: "freelance, consulting, creative services, portfolio, award-winning projects", metadataBase: new URL("https://yoursite.com"),
|
title: "Freelancer | Award-Winning Creative Services", description: "Clean, Apple-like personal freelance website showcasing award-winning projects with video introduction and booking calendar."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://yoursite.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "Freelance Services - Award-Winning Projects", description: "Specialized creative and strategic freelance solutions. View my portfolio of award-winning projects.", url: "https://yoursite.com", siteName: "Your Name", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Freelance Services - Award-Winning Projects", description: "Discover specialized creative and strategic freelance services with proven results."},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${nunitoSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1410,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
|
|||||||
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
|
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
|
||||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
import { Sparkles, Play, Lightbulb, Target, Zap, Palette, CheckCircle, Trophy, Calendar } from "lucide-react";
|
import { Sparkles, Play, Lightbulb, Target, Zap, Palette, CheckCircle, Trophy, Calendar, Award } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -18,17 +18,17 @@ export default function LandingPage() {
|
|||||||
borderRadius="soft"
|
borderRadius="soft"
|
||||||
contentWidth="mediumSmall"
|
contentWidth="mediumSmall"
|
||||||
sizing="large"
|
sizing="large"
|
||||||
background="noise"
|
background="none"
|
||||||
cardStyle="inset"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="double-inset"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="layered"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
brandName="Your Name"
|
brandName="Your Name"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "video-intro" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Work", id: "work" },
|
{ name: "Work", id: "work" },
|
||||||
{ name: "Book a Call", id: "booking" },
|
{ name: "Book a Call", id: "booking" },
|
||||||
@@ -73,7 +73,7 @@ export default function LandingPage() {
|
|||||||
tagIcon={Play}
|
tagIcon={Play}
|
||||||
title="Brief Video Introduction"
|
title="Brief Video Introduction"
|
||||||
description="Watch me present my core services and areas of expertise. This 2-minute overview covers my approach to delivering exceptional results for creative and strategic projects."
|
description="Watch me present my core services and areas of expertise. This 2-minute overview covers my approach to delivering exceptional results for creative and strategic projects."
|
||||||
videoSrc="http://img.b2bpic.net/free-photo/content-creator-films-smartphone-review_482257-81580.jpg"
|
videoSrc="https://commondatastorage.googleapis.com/gtv-videos-library/sample/BigBuckBunny.mp4"
|
||||||
videoAriaLabel="Freelancer service introduction video"
|
videoAriaLabel="Freelancer service introduction video"
|
||||||
metrics={[
|
metrics={[
|
||||||
{ value: "10+", title: "Years of Experience" },
|
{ value: "10+", title: "Years of Experience" },
|
||||||
|
|||||||
Reference in New Issue
Block a user