Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a2b87b3c5 | |||
| 323dd5708a | |||
| 34088dbcb3 | |||
| 45e4bff3c2 | |||
| be41096713 | |||
| 10f25f1642 |
@@ -1,48 +1,22 @@
|
||||
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 "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const nunitoSans = Nunito_Sans({
|
||||
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"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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"),
|
||||
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."},
|
||||
};
|
||||
title: "Freelancer | Award-Winning Creative Services", description: "Clean, Apple-like personal freelance website showcasing award-winning projects with video introduction and booking calendar."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${nunitoSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1410,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
|
||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||
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() {
|
||||
return (
|
||||
@@ -18,17 +18,17 @@ export default function LandingPage() {
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="large"
|
||||
background="noise"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="layered"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Your Name"
|
||||
navItems={[
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "About", id: "video-intro" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Work", id: "work" },
|
||||
{ name: "Book a Call", id: "booking" },
|
||||
@@ -73,7 +73,7 @@ export default function LandingPage() {
|
||||
tagIcon={Play}
|
||||
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."
|
||||
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"
|
||||
metrics={[
|
||||
{ value: "10+", title: "Years of Experience" },
|
||||
|
||||
Reference in New Issue
Block a user