const {
Document, Packer, Paragraph, TextRun,
AlignmentType, BorderStyle, LevelFormat
} = require('docx');
const fs = require('fs');
const C = {
dark: "1E1510",
brand: "5C4B3C",
accent: "9B7355",
rose: "7A3048",
muted: "999999",
body: "3A3028",
div: "C4A882",
};
const sp = (b, a) => ({ before: b ?? 120, after: a ?? 120 });
const blank = (n = 1) => Array.from({ length: n }, () => new Paragraph({ children: [new TextRun("")] }));
const rule = () => new Paragraph({
spacing: sp(280, 280),
border: { bottom: { style: BorderStyle.SINGLE, size: 3, color: C.div, space: 1 } },
children: [new TextRun("")],
});
const pageLabel = (text) => new Paragraph({
alignment: AlignmentType.CENTER,
spacing: sp(600, 60),
children: [new TextRun({ text: text.toUpperCase(), font: "Garamond", size: 17, color: C.accent, allCaps: true })],
});
const sectionLabel = (text) => new Paragraph({
alignment: AlignmentType.CENTER,
spacing: sp(320, 60),
children: [new TextRun({ text: text.toUpperCase(), font: "Calibri", size: 15, color: C.muted, allCaps: true })],
});
const display = (text, align = AlignmentType.CENTER) => new Paragraph({
alignment: align,
spacing: sp(100, 100),
children: [new TextRun({ text, font: "Garamond", size: 52, bold: true, color: C.dark })],
});
const h2 = (text, align = AlignmentType.CENTER) => new Paragraph({
alignment: align,
spacing: sp(220, 80),
children: [new TextRun({ text, font: "Garamond", size: 34, bold: true, color: C.brand })],
});
const h3 = (text, align = AlignmentType.CENTER) => new Paragraph({
alignment: align,
spacing: sp(140, 60),
children: [new TextRun({ text, font: "Garamond", size: 26, italics: true, color: C.accent })],
});
const p = (text, align = AlignmentType.LEFT) => new Paragraph({
alignment: align,
spacing: sp(100, 100),
children: [new TextRun({ text, font: "Calibri", size: 22, color: C.body })],
});
const pc = (text) => p(text, AlignmentType.CENTER);
const ital = (text, align = AlignmentType.CENTER) => new Paragraph({
alignment: align,
spacing: sp(80, 80),
children: [new TextRun({ text, font: "Garamond", size: 23, italics: true, color: C.dark })],
});
const painQ = (text) => new Paragraph({
alignment: AlignmentType.LEFT,
spacing: sp(120, 40),
children: [new TextRun({ text: `"${text}"`, font: "Garamond", size: 23, italics: true, color: C.brand })],
});
const tQ = (text) => new Paragraph({
alignment: AlignmentType.LEFT,
spacing: sp(160, 40),
children: [new TextRun({ text: `"${text}"`, font: "Garamond", size: 22, italics: true, color: C.dark })],
});
const tA = (name, role) => new Paragraph({
alignment: AlignmentType.LEFT,
spacing: sp(20, 160),
children: [new TextRun({ text: `${name} | ${role}`, font: "Calibri", size: 18, bold: true, color: C.accent })],
});
const cta = (text) => new Paragraph({
alignment: AlignmentType.CENTER,
spacing: sp(200, 200),
children: [new TextRun({ text: `[ ${text} ]`, font: "Garamond", size: 22, bold: true, allCaps: true, color: C.rose })],
});
const incl = (text) => new Paragraph({
numbering: { reference: "bullets", level: 0 },
spacing: sp(50, 50),
children: [new TextRun({ text, font: "Calibri", size: 22, color: C.body })],
});
const note = (text) => new Paragraph({
spacing: sp(40, 40),
children: [new TextRun({ text: `[Note: ${text}]`, font: "Calibri", size: 17, italics: true, color: C.muted })],
});
const pageBreak = () => new Paragraph({
pageBreakBefore: true,
children: [new TextRun("")],
});
const marquee = (text) => new Paragraph({
alignment: AlignmentType.CENTER,
spacing: sp(80, 80),
children: [new TextRun({ text, font: "Calibri", size: 19, bold: true, color: C.accent, allCaps: true })],
});
const step = (num, title, body) => [
new Paragraph({
spacing: sp(180, 30),
children: [
new TextRun({ text: `0${num} `, font: "Garamond", size: 22, bold: true, color: C.accent }),
new TextRun({ text: title, font: "Garamond", size: 22, bold: true, color: C.brand }),
],
}),
new Paragraph({
spacing: sp(20, 120),
children: [new TextRun({ text: body, font: "Calibri", size: 22, color: C.body })],
}),
];
// ─────────────────────────────────────────────────────────────────────────────
const doc = new Document({
numbering: {
config: [{
reference: "bullets",
levels: [{
level: 0, format: LevelFormat.BULLET, text: "•",
alignment: AlignmentType.LEFT,
style: { paragraph: { indent: { left: 720, hanging: 360 } } },
}],
}],
},
styles: { default: { document: { run: { font: "Calibri", size: 22 } } } },
sections: [{
properties: {
page: {
size: { width: 12240, height: 15840 },
margin: { top: 1440, right: 1440, bottom: 1440, left: 1440 },
},
},
children: [
// ─────────────────────────────────────────────────────────────────────────────
// COVER
// ─────────────────────────────────────────────────────────────────────────────
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: sp(800, 80),
children: [new TextRun({ text: "EYNJL STUDIO", font: "Garamond", size: 72, bold: true, color: C.dark, allCaps: true })],
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: sp(0, 60),
children: [new TextRun({ text: "Full Website Copy — Revised", font: "Garamond", size: 28, italics: true, color: C.accent })],
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: sp(0, 300),
children: [new TextRun({ text: "All 8 Pages", font: "Calibri", size: 20, color: C.brand })],
}),
rule(),
pc("Tone preserved from the original. Writing quality elevated. Faith woven in naturally. No AI structure, no contrast framing, no clinical polish."),
rule(),
...blank(2),
// ─────────────────────────────────────────────────────────────────────────────
// PAGE 1 — HOME
// ─────────────────────────────────────────────────────────────────────────────
pageBreak(),
pageLabel("Page 1 — Home"),
rule(),
// HERO
sectionLabel("Hero"),
...blank(1),
display("Building a brand"),
display("that feels like your favorite dress."),
...blank(1),
h3("Rooted in Faith. Fueled by Purpose. Designed with Intention."),
...blank(1),
pc("Our mission is simple. We create digital homes that are welcoming, clear, and completely you, so the right people find you, feel you, and know they are exactly where they need to be."),
...blank(1),
cta("I WANT THIS"),
...blank(2),
// MARQUEE
sectionLabel("Scrolling Marquee"),
marquee("This transformation is within reach • This transformation is within reach • This transformation is within reach"),
...blank(2),
// VISION SECTION
sectionLabel("Vision / Yup That's Within Reach"),
h2("Yup, that's within reach."),
...blank(1),
pc("Imagine confidently sharing your website because it finally reflects your brand, communicates your story clearly, and guides the right people toward working with you. And yes, you deserve nothing less."),
pc("At Eynjl Studio, we craft brand and web experiences that work for you around the clock, with no second-guessing, no hiding, and no crossing your fingers hoping someone will reach out."),
...blank(1),
cta("LET'S MAKE IT HAPPEN"),
...blank(2),
// PAIN POINTS
sectionLabel("I Heard You Section"),
h2("You say it, and I hear you."),
...blank(1),
painQ("I know God called me to this, but I still struggle to explain what I do clearly."),
painQ("My website looks pretty, but it doesn't always work the way I need it to. I want one that actually resonates."),
painQ("I need help staying visible while I'm also managing everything else on my plate."),
painQ("Keeping up with my socials feels like a whole second job. I'm exhausted."),
painQ("My brand looks inconsistent across my website and socials. Everything I make feels like it belongs to a different business."),
...blank(1),
pc("We hear every one of those. Sit with us for a moment, because getting these things out is the first step toward actually solving them."),
pc("When you're ready, here's how we can help."),
...blank(2),
// SERVICES PREVIEW
sectionLabel("Services Tabs"),
h2("Take what you need."),
...blank(1),
h3("Website Design", AlignmentType.LEFT),
p("You've got the story. Let's build a website that carries it with the same heart and intention you pour into everything you do. When the right client lands on your page, it's going to feel like a complete yes. I'll make sure every piece reflects that."),
cta("EXPLORE WEBSITE DESIGN"),
...blank(1),
h3("Brand Identity Design", AlignmentType.LEFT),
p("Your brand has full potential. You have the dreams, the vision, and the grit to make it real. Let's give it a look that the world can finally see. A cohesive, aligned identity that shows up and says exactly what it needs to say, for you, every single day."),
cta("EXPLORE BRANDING"),
...blank(1),
h3("Virtual and Creative Support", AlignmentType.LEFT),
p("You have a message that deserves to be heard. Sometimes you just need someone in your corner to help you show up consistently, stay on-brand, and make sure your voice is reaching the people who need it. That's what we're here for."),
cta("EXPLORE CREATIVE SUPPORT"),
...blank(2),
// ABOUT PREVIEW
sectionLabel("About Preview"),
...blank(1),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: sp(0, 60),
children: [new TextRun({ text: "HEY THERE,", font: "Garamond", size: 22, bold: true, color: C.accent, allCaps: true })],
}),
h2("I'm Angel!"),
...blank(1),
p("Or Eynjl, same name, same heart. I have been on this design journey since 2019 and it has been a full ride of trials, honest mistakes, and a lot of learning. But thank God, every single part of it led me here, to this work I love, with women I genuinely believe in."),
p("As an INTJ, I see the big picture first and then work inward from there. It is like solving a puzzle, making sure every piece fits so that your story gets told the way it deserves. I specialize in strategic design that helps your audience connect, trust, and say yes."),
p("And that is what I am here to do: help you build a brand that truly reflects who you are and who you are called to serve."),
...blank(1),
cta("GET TO KNOW ME"),
...blank(2),
// MARQUEE 2
sectionLabel("Scrolling Marquee 2"),
marquee("Transforming Brands • Transforming Brands • Transforming Brands • Transforming Brands"),
...blank(2),
// PORTFOLIO PREVIEW
sectionLabel("Portfolio Preview"),
h2("We made a difference. Come see it."),
pc("Every project here is a story of someone who took a step of faith and has not looked back."),
cta("VIEW PORTFOLIO"),
...blank(2),
// TESTIMONIALS
sectionLabel("Testimonials"),
h2("We're receiving a lot of love from our clients."),
...blank(1),
tQ("Angelika did an incredible job. She understood exactly what I needed, took feedback quickly, and created beautiful work that saved me hours. I'd definitely love to work with her again."),
tA("Aashni Shah", "Founder, Quiznight.org"),
tQ("It was a pleasure to work with Angelika. She collaborated well, paid close attention to color and fonts, gave me space to think through decisions, and created something that was a perfect fit for my brand. I would certainly recommend her."),
tA("Dr. Atasha Jordan", "MD, MBA Harvard University"),
tQ("I emailed her a copy of my book and in less than 24 hours she sent me a full portfolio of beautifully branded social media posts. They were fully branded and just perfect. Thank you so much, Angelika. You are a miracle worker."),
tA("Shari Ware", "Author and Founder, FAB New Body"),
tQ("I was overwhelmed by her passion. She truly made every piece of work extraordinary. The combination of her skills and passion is priceless."),
tA("Charm Ragasa", "Founder, Charm's Creation"),
tQ("Angel is a pleasure to work with and her work is both excellent and timely. She asked exactly the right questions, completed every revision promptly, and delivered something we are genuinely thrilled with. We would 100% recommend working with her again."),
tA("Kairos Alek", "MD, Therapist and Psychiatrist"),
...blank(2),
// CLOSING LINKS
sectionLabel("Portfolio and Instagram Closing"),
h2("This is where I let my work do the talking."),
cta("VIEW PORTFOLIO"),
h2("This is where I share stories."),
cta("VIEW INSTAGRAM"),
...blank(2),
// FOOTER
sectionLabel("Footer"),
pc("Eynjl Studio is on a mission to transform brands through faith-led branding, Showit website design, and creative support."),
pc("Website Design by Eynjl Studio | All Rights Reserved 2025"),
...blank(2),
// META
sectionLabel("Revised Meta Description"),
p("Eynjl Studio is a faith-led branding and Showit website design studio for Christian women entrepreneurs. We help coaches, therapists, speakers, authors, and purpose-driven women build a clear, elevated, and aligned online presence. Rooted in faith. Designed with intention."),
...blank(2),
// ─────────────────────────────────────────────────────────────────────────────
// PAGE 2 — ABOUT
// ─────────────────────────────────────────────────────────────────────────────
pageBreak(),
pageLabel("Page 2 — About"),
rule(),
// HERO
sectionLabel("About Hero"),
...blank(1),
h2("I help ambitious Christian women entrepreneurs elevate their business through strategic branding, a website that actually converts, and creative support that keeps them visible."),
...blank(1),
marquee("Branding • Website Design • Creative Support • Branding • Website Design • Creative Support"),
...blank(2),
// INTRO — SO HAPPY YOU'RE HERE
sectionLabel("'So Happy You're Here' Intro"),
new Paragraph({
alignment: AlignmentType.LEFT,
spacing: sp(200, 60),
children: [new TextRun({ text: "I AM SO HAPPY YOU'RE HERE,", font: "Garamond", size: 24, bold: true, color: C.accent, allCaps: true })],
}),
...blank(1),
p("Because it gives me the chance to share something I think you really need to hear."),
p("So let's talk. If you're a visionary female business owner who keeps asking yourself why you still feel stuck, how to get everything organized, and who can actually help you bring your ideas to life, you are in exactly the right place."),
p("At Eynjl Studio, I help Christian entrepreneurs align their God-given purpose with clear, strategic visual branding and web design. Everything we create together is rooted in faith, fueled by purpose, and designed with intention, so you can build a presence that genuinely reflects who you are and who you are called to serve."),
...blank(1),
cta("LET'S WORK TOGETHER"),
...blank(2),
// ANGEL BIO
sectionLabel("Angel's Full Story"),
h2("Hi, I'm Angel!"),
...blank(1),
h3("The Creative Soul", AlignmentType.LEFT),
p("I have always been a creative soul. I started drawing with watercolor paint and a brush using folders as my canvas. Making something beautiful out of almost nothing has always felt like home to me."),
...blank(1),
h3("The Painter", AlignmentType.LEFT),
p("From sixth grade through high school, I moved into acrylic and mixed media and became part of artist communities called PAC (Pangasinan Artist Circle) and Sarag Mi. I participated in exhibitions in different galleries. It was something else entirely, feeling so creative and fulfilled that young."),
...blank(1),
h3("The Adventurer", AlignmentType.LEFT),
p("I went to college at TUP-Manila and earned a Bachelor's degree in Fine Arts, majoring in Advertising. That's where I learned the foundations of advertising, and fell in love with subjects like branding, photography, copywriting, 3D design, and fashion. I'm honestly a bit of a jack-of-all-trades, and I have my parents to thank for supporting that path. Art school was expensive. So I started earning my own money to help."),
...blank(1),
h3("The Dreamer", AlignmentType.LEFT),
p("I have always had an entrepreneurial spirit, which showed up early when I was selling bracelets made from magazine paper in elementary school. That spirit is what launched me into freelancing in 2019, building an agency that served clients across the US, UK, Canada, the Philippines, and beyond."),
...blank(1),
h3("The Believer", AlignmentType.LEFT),
p("I absolutely love what I do. I kept exploring different industries, from hotels and restaurants to video advertising and creative campaigns, always learning and growing. And through all of it, God kept clarifying the lane that was actually mine."),
...blank(1),
h3("The Go-Giver", AlignmentType.LEFT),
p("Today I am a digital creative who is fully focused on leveling up and continuously sharpening my skills so I can better serve the women I work with. The thing that drives me most is knowing I have real solutions that can genuinely move the needle for someone. That keeps me going every single day."),
...blank(1),
p("As an INTJ, my approach is both strategic and visionary. My mind sees the big picture first, then works through every detail to make sure each piece of your story fits together the way it should. It is like a puzzle, and I love the process of solving it with you."),
p("I specialize in design that helps your audience connect, understand, and trust you. That is the work. And that is what I am here to do."),
...blank(1),
cta("LET'S WORK TOGETHER"),
...blank(2),
// VALUES
sectionLabel("Values Section"),
h2("Everything is intentional. Everything we do is a masterpiece."),
...blank(1),
p("We welcome our clients, make them feel comfortable, give them space to voice every struggle. And then we listen, really listen, and strategize from there."),
p("Eynjl Studio exists to help you conquer obstacles and reach your goals. Every client is treated with care and respect. We are committed to making lasting improvements and bringing real intention to everything we create together."),
...blank(1),
incl("Transformational"),
incl("Intentional"),
incl("Creative"),
incl("Passionate"),
incl("Caring"),
incl("Empowering"),
...blank(1),
p("We believe in kindness, respect, and a safe space to grow. We stay curious, stay patient, and stay committed to your progress. We are looking for something meaningful here, and we think you are too."),
...blank(1),
cta("VIEW PORTFOLIO"),
cta("VISIT INSTAGRAM"),
...blank(2),
sectionLabel("Revised Meta Description"),
p("Meet Angel, the founder of Eynjl Studio. A faith-led branding and Showit website design studio for Christian women entrepreneurs. Discover the story, values, and heart behind the work."),
...blank(2),
// ─────────────────────────────────────────────────────────────────────────────
// PAGE 3 — SERVICES
// ─────────────────────────────────────────────────────────────────────────────
pageBreak(),
pageLabel("Page 3 — Services"),
rule(),
// HERO
sectionLabel("Services Hero"),
...blank(1),
h2("We're an extension of your team."),
h3("Let's create something extraordinary, together."),
...blank(2),
// AM I THE MISSING PIECE
sectionLabel("Am I the Missing Piece Section"),
h2("Am I the missing piece in your business puzzle?"),
...blank(1),
p("A lot of designers and agencies can build a logo, put up a website, or manage your social media. But do they actually capture the heart of your brand? Do they make sure every piece of it works together in a way that feels like you?"),
p("I genuinely understand your vision. I prioritize listening to your struggles before I ever touch a design. I focus on enhancing your strengths and making you stand out. And I make sure every part of your brand is working in harmony, so the results actually follow."),
p("If that resonates with you, let's create something extraordinary together."),
...blank(2),
// PERFECT FIT
sectionLabel("Are We the Perfect Fit Section"),
h2("Are we the perfect fit?"),
h3("This is a real investment, and not every business is ready for it. Here's how to know if you are."),
...blank(1),
h3("Website Design", AlignmentType.LEFT),
incl("You're ready to stop being embarrassed by your website and start being proud to share it."),
incl("You've worked with designers before and still feel like something is missing."),
incl("You want a website that resonates, not just one that exists."),
incl("You understand that a great website is one of the most powerful tools your business has."),
cta("EXPLORE WEBSITE DESIGN"),
...blank(1),
h3("Brand Identity Design", AlignmentType.LEFT),
incl("Your business has a clear vision and you're ready to give it a visual identity that actually matches it."),
incl("You're tired of looking inconsistent and want a brand that stays cohesive everywhere."),
incl("You want a brand that communicates trust before you even say a word."),
cta("EXPLORE BRAND IDENTITY"),
...blank(1),
h3("Virtual and Creative Support", AlignmentType.LEFT),
incl("You understand the power of showing up consistently online and want real support doing it."),
incl("You want someone who already knows your brand so you don't have to explain yourself every single time."),
incl("You want more time to focus on the work you're actually called to do."),
cta("EXPLORE CREATIVE SUPPORT"),
...blank(2),
// TESTIMONIALS
sectionLabel("Testimonials"),
h2("We made a difference. See for yourself."),
pc("Every story here is one of transformation. People who took a leap of faith and have not looked back."),
...blank(1),
tQ("Angelika did an incredible job. She understood exactly what I needed, took feedback quickly, and created beautiful work that saved me hours. I'd definitely love to work with her again."),
tA("Aashni Shah", "Founder, Quiznight.org"),
tQ("It was a pleasure to work with Angelika. She collaborated thoughtfully, paid close attention to every detail, and delivered something that was a perfect match for my brand. I would certainly recommend her."),
tA("Dr. Atasha Jordan", "MD, MBA Harvard University"),
tQ("I sent her my book and in less than 24 hours she delivered a full portfolio of fully branded social media posts that looked amazing. Thank you, Angelika. You are a miracle worker."),
tA("Shari Ware", "Author and Founder, FAB New Body"),
tQ("I was overwhelmed by her passion. She truly made every piece of work extraordinary. The combination of her skill and her heart is priceless."),
tA("Charm Ragasa", "Founder, Charm's Creation"),
tQ("Angel is a pleasure to work with and her work is excellent and timely. She asked the right questions, completed every revision promptly, and the end product is something we are truly proud of. We would 100% recommend her."),
tA("Kairos Alek", "MD, Therapist and Psychiatrist"),
...blank(2),
sectionLabel("Revised Meta Description"),
p("Explore Eynjl Studio's services: faith-led brand identity design, custom Showit website design, and creative support for Christian women entrepreneurs. Built to reflect your calling and built to work."),
...blank(2),
// ─────────────────────────────────────────────────────────────────────────────
// PAGE 4 — WEBSITE DESIGN
// ─────────────────────────────────────────────────────────────────────────────
pageBreak(),
pageLabel("Page 4 — Website Design"),
rule(),
// HERO
sectionLabel("Website Design Hero"),
...blank(1),
h2("Transform your online presence."),
h3("Custom Showit Website Design for Christian Women Entrepreneurs"),
...blank(1),
pc("We'll create a website that speaks with clarity and pulls in the right people, so your brand has a digital home that works for you every single hour of every day."),
...blank(1),
cta("YES, I WANT THIS"),
...blank(2),
// THIS IS FOR YOU
sectionLabel("This Is For You Section"),
h2("This is for you if:"),
incl("You're a service-based business owner who understands the power of a great online presence but needs clarity and real direction."),
incl("You've worked with multiple designers and still feel like your website doesn't quite capture you or attract your ideal clients."),
incl("You're eager to grow your business with a standout digital experience that actually converts."),
incl("You want a partner who genuinely listens and knows how to translate your vision into something clear, beautiful, and purposeful."),
...blank(1),
cta("LET'S WORK TOGETHER"),
...blank(2),
// WHAT'S INCLUDED
sectionLabel("What's Included"),
h2("What's included in your website design:"),
...blank(1),
incl("60-Minute Website Strategy Session"),
incl("Custom 5-Page Showit Website"),
incl("Desktop, Tablet, and Mobile Optimization"),
incl("Basic On-Page SEO Setup (page titles, meta descriptions, image alt text)"),
incl("Social Media Integration"),
incl("Post-Project Website Walkthrough Video"),
incl("7 Days Post-Launch Email Support"),
incl("1 Launching Reel"),
incl("6 Social Media Post Templates"),
...blank(1),
cta("TRANSFORM YOUR WEBSITE"),
...blank(2),
// INVESTMENT
sectionLabel("Pricing"),
h2("Your investment"),
...blank(1),
h3("Pay in Full", AlignmentType.LEFT),
p("$1,199 USD (original price $2,398 — current limited offer)"),
...blank(1),
h3("Payment Plan", AlignmentType.LEFT),
p("$699 x 2 USD (original price $1,398 x 2 — current limited offer)"),
...blank(1),
h3("Full Branding + Website Package", AlignmentType.LEFT),
p("$2,105 USD (original price $4,210 — current limited offer). This bundle gives you a complete brand identity alongside your Showit website so you can launch with everything cohesive, aligned, and ready. Includes your full logo suite, color palette, typography, visual style guide, brand manual, and all website deliverables."),
...blank(1),
cta("BOOK YOUR SPOT"),
...blank(2),
// THE PROCESS
sectionLabel("The Process"),
h2("Here's how we build it together, step by step."),
...blank(1),
...step(1, "Discovery and Strategy Session", "We start with a one-on-one conversation to understand your business, your audience, your vision, and your goals. This is where we build the foundation everything else grows from."),
...step(2, "Concept Development", "With your strategy in hand, we start designing your homepage. This is where we bring your direction to life visually and create a magnetic first impression for your ideal clients."),
...step(3, "Feedback and Refinement", "We share the initial concept and your feedback guides what happens next. We refine until it truly feels like you."),
...step(4, "Inner Page Design", "Once the homepage is approved, we move through every remaining page, making sure your brand stays consistent and your visitor stays engaged all the way through."),
...step(5, "Integration and Functionality", "We make sure everything works. Forms, social links, navigation, all of it tested and smooth."),
...step(6, "Quality Assurance", "Every element gets reviewed before launch. We check everything so you don't have to worry about a thing."),
...step(7, "SEO Optimization", "We set up your on-page SEO so your ideal clients can actually find you when they're searching."),
...step(8, "Launch Day", "We go live. Your new website is out in the world, doing its job. Now we celebrate."),
...blank(2),
// WHAT WE NEED FROM YOU
sectionLabel("What We Need From You"),
h2("Here's what we'll need from you to get started:"),
incl("Showit account access"),
incl("Domain account login details"),
incl("Website content, meaning the text and information for each page"),
incl("Visual assets, meaning your high-resolution photos and brand imagery"),
incl("Brand guidelines, meaning your logo, color palette, and fonts if you have them"),
...blank(1),
pc("If you don't have everything yet, that's okay. We'll talk through where you are and figure out the best path forward together."),
cta("I AM READY TO START"),
...blank(2),
sectionLabel("Revised Meta Description"),
p("Eynjl Studio offers custom Showit website design for Christian women entrepreneurs. Strategic, elevated, and built to reflect your calling so your ideal clients find you, trust you, and reach out."),
...blank(2),
// ─────────────────────────────────────────────────────────────────────────────
// PAGE 5 — BRANDING
// ─────────────────────────────────────────────────────────────────────────────
pageBreak(),
pageLabel("Page 5 — Branding and Identity Design"),
rule(),
// HERO
sectionLabel("Branding Page Hero"),
...blank(1),
h2("Take a look at what I can do for your brand."),
h3("Brand Identity Design for Christian Women Entrepreneurs"),
...blank(2),
// INTRO
sectionLabel("Branding Intro"),
h2("Your brand has full potential."),
...blank(1),
p("You have the dreams. You have the vision. You have the determination to make it real. But if your brand identity doesn't reflect that yet, the world can't see what you already know is there. You've been building long enough. Let's give your brand a look that finally matches the level of what you're actually doing."),
p("We create cohesive, intentional brand identities for Christian women entrepreneurs who are ready to show up with clarity and confidence. Every element, from your logo to your color palette to your visual style guide, is chosen with strategy and purpose so your brand communicates exactly what it needs to before you even say a word."),
...blank(1),
cta("LET'S BUILD YOUR BRAND"),
...blank(2),
// PORTFOLIO NOTE
sectionLabel("Portfolio Coming Soon"),
h2("Our branding portfolio is growing."),
p("We're actively building out our branding case studies and will be sharing them soon. In the meantime, download our past work to explore what we've done, or fill out the form below to start a conversation about your project."),
cta("DOWNLOAD PORTFOLIO"),
cta("INQUIRE HERE"),
...blank(2),
// WHAT'S INCLUDED
sectionLabel("What's Included"),
h2("What's included in your brand identity design:"),
incl("Brand Strategy and Identity Document"),
incl("Primary Logo, Secondary Logo, Submark Logo"),
incl("Color and Black and White Logo Versions"),
incl("Definitive Color Palette"),
incl("Typography Selection and Font Hierarchy"),
incl("Visual Style Guide (Moodboard, Patterns, Textures, Favicon)"),
incl("Brand Manual"),
incl("3 Rounds of Refinement"),
incl("File Usage Guide"),
incl("Optional additions: Business Cards, Marketing Collaterals, Packaging, Presentation Templates, Workbook Design, Brand or Product Shoot"),
...blank(1),
cta("I WANT THIS"),
...blank(2),
sectionLabel("Revised Meta Description"),
p("Eynjl Studio offers faith-led brand identity design for Christian women entrepreneurs. Logos, color palettes, visual style guides, and brand strategy built around your calling. A brand that finally reflects who you are."),
...blank(2),
// ─────────────────────────────────────────────────────────────────────────────
// PAGE 6 — CREATIVE AND VIRTUAL SUPPORT
// ─────────────────────────────────────────────────────────────────────────────
pageBreak(),
pageLabel("Page 6 — Virtual and Creative Support"),
rule(),
// HERO
sectionLabel("Creative Support Hero"),
...blank(1),
h2("Take a look at what I can do for your visibility."),
h3("Virtual and Creative Support for Christian Women Entrepreneurs"),
...blank(2),
// INTRO
sectionLabel("Creative Support Intro"),
h2("I understand those moments."),
...blank(1),
p("You look at your brand or your feed and think, this could be so much more. That feeling is real, and it usually means you're ready for the next level. You have a message worth hearing. Now let's make sure it's actually reaching the people who need it."),
p("Showing up consistently on social media while running a real business can feel genuinely overwhelming. You don't have to do it alone. With the right creative support, your brand stays visible, your content stays on-brand, and your message keeps moving even on your busiest days."),
...blank(1),
cta("LEARN MORE"),
...blank(2),
// PORTFOLIO NOTE
sectionLabel("Portfolio Coming Soon"),
h2("Our creative support portfolio is growing."),
p("We're building out this section and will be sharing it soon. In the meantime, download our past work or fill out the form below and let's talk about how we can support your brand."),
cta("DOWNLOAD PORTFOLIO"),
cta("INQUIRE HERE"),
...blank(2),
// WHAT'S INCLUDED
sectionLabel("What's Included"),
h2("What creative and virtual support includes:"),
incl("Account Setup and Optimization"),
incl("Content Strategy and Planning"),
incl("Content Creation (Captions, Graphics, Photos, Video Edits)"),
incl("Posting and Scheduling"),
incl("Analytics and Reporting"),
incl("Lead Magnet Design"),
incl("Messaging Support"),
...blank(1),
cta("BOOK A DISCOVERY CALL"),
...blank(2),
sectionLabel("Revised Meta Description"),
p("Eynjl Studio offers virtual and creative support for Christian women entrepreneurs. Social media content, graphics, lead magnets, and messaging support so your brand stays consistent and visible."),
...blank(2),
// ─────────────────────────────────────────────────────────────────────────────
// PAGE 7 — CONTACT
// ─────────────────────────────────────────────────────────────────────────────
pageBreak(),
pageLabel("Page 7 — Contact"),
rule(),
// HERO
sectionLabel("Contact Page Hero"),
...blank(1),
h2("We want to hear from you."),
...blank(1),
pc("Have questions, want to explore working together, or just want to say hello? You're in the right place. Fill out the form below and we'll get back to you within 24 business hours. We're genuinely looking forward to this conversation."),
...blank(2),
// FORM
sectionLabel("Contact Form"),
note("Form fields: First Name, Last Name, Email, Business Name, Instagram Handle, Message"),
note("Submit button: SEND YOUR MESSAGE"),
note("Confirmation: Thank you! Your message has been received. We'll be in touch within 24 hours. Have a beautiful day."),
...blank(2),
// MARQUEE
sectionLabel("Scrolling Marquee"),
marquee("Branding • Website Design • Creative Support • Branding • Website Design • Creative Support"),
...blank(2),
sectionLabel("Revised Meta Description"),
p("Connect with Eynjl Studio, a faith-led branding and Showit website design studio for Christian women entrepreneurs. Reach out to start the conversation about your brand and your calling."),
...blank(2),
// ─────────────────────────────────────────────────────────────────────────────
// PAGE 8 — WORK WITH ME
// ─────────────────────────────────────────────────────────────────────────────
pageBreak(),
pageLabel("Page 8 — Work With Me"),
rule(),
// HERO
sectionLabel("Work With Me Hero"),
...blank(1),
h2("Are you ready to take the next step?"),
...blank(1),
pc("Ready to lift your hands off that overfull plate? Let's work together. Fill out the application below and let's find out if we are the right fit for each other."),
...blank(2),
// FORM
sectionLabel("Application Form Fields"),
note("Form fields: First Name, Last Name, Email, Business Name, Instagram Handle, Website (if applicable)"),
note("Question: What service(s) are you interested in?"),
note("Question: What challenges are you currently experiencing in your business that led you to reach out?"),
note("Question: What does success look like for this project?"),
note("Question: What is your current annual revenue (approx.)?"),
note("Question: Why do you want to work with me specifically?"),
note("Question: What is your ideal timeline for starting or completing this project?"),
note("Question: How did you hear about us?"),
note("Question: How would you like to move forward with your inquiry?"),
note("Submit button: SUBMIT MY APPLICATION"),
note("Confirmation: Thank you for applying. We have received your application and will be in touch within 24 hours to talk through next steps. We are looking forward to learning more about you and your work."),
...blank(2),
// SCHEDULING SECTION
sectionLabel("Schedule a Meeting Section"),
h2("Schedule a meeting."),
p("Feel free to book a time that works for you. If you would rather skip the call and connect over email instead, simply leave this section blank. We respond quickly either way, and will be in touch within 24 hours to talk through next steps."),
p("We're looking to make sure we're truly the right match. When we are, working together is something we take seriously from day one."),
cta("SCHEDULE A CALL"),
...blank(2),
sectionLabel("Revised Meta Description"),
p("Apply to work with Eynjl Studio, a faith-led branding and Showit website design studio for Christian women entrepreneurs. Fill out the application to start building a brand that reflects your calling."),
...blank(3),
// ─────────────────────────────────────────────────────────────────────────────
// APPENDIX
// ─────────────────────────────────────────────────────────────────────────────
pageBreak(),
pageLabel("Appendix — Brand Voice Reference"),
rule(),
h2("How the voice works in this revision"),
...blank(1),
p("The original tone of the website is warm, personal, direct, and real. Angel talks like someone who genuinely cares about the women she works with and is not afraid to say something plainly. That quality was preserved here."),
p("What changed: grammar, clarity, a few typos (including the recurring 'heared'), and phrasing that accidentally crossed into over-the-top territory ('hell yes', 'ROLLER COASTER!!!', 'FLAWLESS! SLEEK! PERFECT!'). These were replaced with phrases that carry the same energy at a higher register."),
p("What stayed: the directness, the warmth, the faith woven into the language naturally rather than announced, the personal voice, the 'take what you need' spirit, the humor, and the genuine excitement about the work."),
...blank(1),
h3("Things you will never find in Eynjl Studio copy:", AlignmentType.LEFT),
incl("Contrast framing ('not this, but that')"),
incl("Stacked dramatic one-liners"),
incl("Preachy faith language"),
incl("Robotic or overly polished transitions"),
incl("Hype language that doesn't match the brand's actual warmth"),
...blank(2),
rule(),
pc("Eynjl Studio Full Website Copy — All 8 Pages"),
...blank(1),
],
}],
});
Packer.toBuffer(doc).then(buf => {
fs.writeFileSync("/mnt/user-data/outputs/Eynjl_Studio_Website_Copy_Final.docx", buf);
console.log("Done.");
});